可能重复:
将延迟数组传递给 $.when()
无论如何要传递 jquery deferred $.when ajax 函数数组吗?例子:
var arr = [
$.getJSON(window.location, function() { alert('yes') }),
$.getJSON(window.location, function() { alert('yes') })
]
$.when(arr).then(function(a, b) {
});
谢谢你的帮助!