我的jQuery似乎停止,直到ajax請求已加載。 這裏有什麼問題我認爲ajax是異步的?
代碼:
$('div').each(function(){
if($(this).attr('id')){
var that = this;
$.post('application/views/dashboard/dashboard.php?component='+$(this).attr('id')+"&settingid="+settingId, function(response){
$(that).html(response);
$(window).trigger('resize');
});
settingId++;
}
});
還有就是要同時有數量限制調用。你嘗試發送多少個? – 2014-09-22 11:28:43
@TrueBlueAussie 4,但第二個是較慢的呼叫,然後它不會執行呼叫3和4 – 2014-09-22 11:30:18
您是否需要並行或順序運行,或者「不關心,只要告訴我他們何時完成」? – 2014-09-22 11:35:46