我曾嘗試使用下面的腳本由Ajax請求......我的網站停止,直到整個內容加載?
$.ajax({
type: 'POST',
url: 'load.php',
data: 'page='+url,
dataType: "html",
beforeSend:function(){
$('.left').html('<div class="ajax-load"><center><img src="http://www.cadysalley.com/img/loader.gif" style="margin-top: 33px;" alt="Loading..." /></center></div>');
$('#ajax-load').show();
},
success:function(msg){
$('.left').empty();
// successful request; do something with the data
if(parseInt(msg)!=0)
{
$('html, body').animate({ scrollTop: 0 }, 0);
$('.left').html(msg);
$('#ajax-load').hide();
}
},
error:function(){
$('.left').empty();
$('#ajax-load').hide();
}
});
我的問題是,每當我點擊警報彈出後的鏈接,微調開始,且警報彈出後,,日,除非新的頁面加載整個網站停頓了幾秒鐘,,, ...我希望我的網站不能暫停和繼續完美微調負載,直到整個網站負載與Ajax調用
我這樣做也是,我把外還裝載圖像,, BT也是同樣的問題,加載圖像暫停,整個頁面會停止幾秒鐘,然後只 – mesushanta
看到我的編輯答案 –
你得到它的工作負荷?將我編輯的代碼放入成功函數中。這將做伎倆 –