根據用戶的操作,我需要進行ajax調用,從一個調用到三個並行調用。我也想顯示進度條。一個進度條用於任意數量的Ajax請求。以下是我要調整的示例代碼。任何人都可以建議如何限制通話次數以及如何使用一個進度條。jquery中的併發Ajax請求進度條
$.when(
// Get the HTML
$.get("/feature/", function(html) {
globalStore.html = html;
}),
// Get the CSS
$.get("/assets/feature.css", function(css) {
globalStore.css = css;
}),
// Get the JS
$.getScript("/assets/feature.js")
).then(function() {
// All is ready now, so...
// Add CSS to page
$("<style />").html(globalStore.css).appendTo("head");
// Add HTML to page
$("body").append(globalStore.html);
});