gpt4 book ai didi

javascript - js文件导入顺序

转载 作者:行者123 更新时间:2023-12-02 19:03:14 25 4
gpt4 key购买 nike

在 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 的导入顺序是什么?

最佳答案

Does this mean I will need to import "mylibrary.js" within "newfile.js" ?

没有。就执行顺序和范围而言,内联脚本和远程脚本没有区别。

What is the import ordering of javascript/jquery ?

如果在尝试调用函数之前尚未解析包含(或来源)函数声明的脚本元素,则会出现错误。

如果你想调用jQuery定义的函数,那么你必须放置<script><script> 之前加载 jQuery加载调用 jQuery 函数的代码。

关于javascript - js文件导入顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14568003/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com