在 jsp 文件中导入库:
<script type="text/javascript" src="mylibrary.js"></script>
然后在需要此库的 .jsp 中进一步执行代码:
<script type="text/javascript">
//various calls take place to myLibrary.js
<script>
我想将 javascript 函数/函数调用提取到外部 .js 文件中。所以替换:
<script type="text/javascript">
//various calls take place to myLibrary.js
<script>
和 :
<script type="text/javascript" src="newfile.js"></script>
其中“newfile.js”包含函数/函数调用。
这是否意味着我需要在 "newfile.js" 中导入 "mylibrary.js" ?
javascript/jquery 的导入顺序是什么?