網(wǎng)站制作NEWS
SCROLL
Loading特效,網(wǎng)頁(yè)加載中Jquery如何使用加載中的使用
//請(qǐng)求加載提示的顯示和隱藏
$('.loading').ajaxStart(function
()
{
$(this).show();
}).ajaxStop(function
()
{
$(this).hide();
});
注意:以上代碼在
jQuery1.8
及以后的版本不在有效,需要使用
jquery-migrate
向下兼容
才能運(yùn)行。新版本中,必須綁定在
document
元素上。
$(document).ajaxStart(function
()
{
$('.loading').show();
}).ajaxStop(function
()
{
$('.loading').hide();
});
//如果請(qǐng)求時(shí)間太長(zhǎng),可以設(shè)置超時(shí)
$.ajax({
timeout
:
500
})
標(biāo)簽: loading特效網(wǎng)頁(yè)加載中jquery如何使用加載中的使用
多重隨機(jī)標(biāo)簽