“是否可以将第二个 $.when().done() 嵌套在另一个 $.when().done() 中。它有时似乎有效,但并非始终如一。问题似乎是第二个 done()并不总是触发。我在下面提供了一个我正在尝试做的示例。
$.when(
// config file
$.getScript("config.js")
).done(function(){
$.when(
// load js files
$.getScript("file1.js"),
$.getScript("file2.js"),
$.getScript("file3.js"),
$.getScript("file4.js"),
$.getScript("file5.js"),
$.getScript("file6.js")
).done(function(){
console.log("done")
});
});