是否可以像这样在脚本标记中添加变量?
<script src="page.js" variable1 = "Rome"></script>
6l7fqoea1#
通常的方法是将js设置为一种模块。然后初始化它并启动它,例如:
<script> window.myModule = { start: function(options) { // do the thing }, // other functions } </script> <script> myModule.start({ foo: 'bar', // more options }); </script>
1条答案
按热度按时间6l7fqoea1#
通常的方法是将js设置为一种模块。然后初始化它并启动它,例如: