gpt4 book ai didi

javascript - 在运行 javascript 代码之前,如何使用 jQuery.getScript() 加载可变数量的脚本?

转载 作者:数据小太阳 更新时间:2023-10-29 05:40:51 25 4
gpt4 key购买 nike

在运行依赖于它们的 javascript 代码之前,我需要加载可变数量的 javascript 源文件。有时需要加载 1 个脚本,有时需要加载 2 个。getScript() 方法允许加载一个脚本 - 我如何在运行其内部代码之前使用它加载 x 个脚本?

$.getScript("test.js", function(){    // code to run after script is loaded});

我需要什么:

$.getScript(new Array("1.js","2.js"), function(){    // code to run after all scripts are loaded});

谢谢

最佳答案

如果您使用的是 jquery 1.5,则可以使用新的延迟语法。

$.when(
$.getScript("1.js"),
$.getScript("2.js"),
$.getScript("3.js")
).then(function(){
alert("all loaded");
});

只需传入您要加载的脚本即可。

关于javascript - 在运行 javascript 代码之前,如何使用 jQuery.getScript() 加载可变数量的脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5035741/

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