jQuery ajax ajaxStart() 方法
jQuery ajax ajaxStart() 方法
ajaxStart() 方法在 AJAX 請(qǐng)求發(fā)送前執(zhí)行函數(shù)。它是一個(gè) Ajax 事件。
無(wú)論在何時(shí)發(fā)送 Ajax 請(qǐng)求,jQuery 都會(huì)檢查是否存在其他 Ajax 請(qǐng)求。如果不存在,則 jQuery 會(huì)觸發(fā)該 ajaxStart 事件。在此時(shí),由 .ajaxStart() 方法注冊(cè)的任何函數(shù)都會(huì)被執(zhí)行。
1. 語(yǔ)法
.ajaxStart(function())
參數(shù) | 描述 |
---|---|
function() | 規(guī)定當(dāng) AJAX 請(qǐng)求開始時(shí)運(yùn)行的函數(shù)。 |
示例
AJAX 請(qǐng)求開始時(shí)顯示信息:
$("#loading").ajaxStart(function(){ $(this).show(); });
2. 范例
當(dāng) AJAX 請(qǐng)求開始時(shí),顯示“加載中”的指示:
$("div").ajaxStart(function(){ $(this).html("<img src="/Uploads/demo_wait.gif" width="20" height="20" alt="" border="0" />"); });
相關(guān)文章
- jQuery 停止動(dòng)畫
- jQuery Callback 函數(shù)
- jQuery - Chaining
- jQuery 參考手冊(cè) 遍歷
- jQuery 事件 keyup() 方法
- jQuery 事件 mouseenter() 方法
- jQuery 遍歷 dequeue() 方法
- jQuery 遍歷 andSelf() 方法
- jQuery 遍歷 is() 方法
- jQuery 遍歷 map() 方法
- jQuery 遍歷 nextAll() 方法
- jQuery 遍歷 nextUntil() 方法
- jQuery 遍歷 parentsUntil() 方法
- jQuery 屬性操作 hasClass() 方法
- jQuery 屬性操作 removeClass() 方法
- jQuery 屬性操作 val() 方法
- jQuery 文檔操作 wrapAll() 方法
- jQuery . 選擇器
- jQuery :lt 選擇器
- jQuery :text 選擇器