jquery第二十四課,ajax事件處理,也就有常見(jiàn)的幾種,表示在ajax處理之后,通過(guò)結(jié)果事件來(lái)調(diào)用不同的函數(shù),比如,ajax執(zhí)行完畢,ajax出現(xiàn)錯(cuò)誤等等.
1.ajaxcomplete(callback)ajax 請(qǐng)求完成時(shí)執(zhí)行函數(shù)。ajax 事件。
callback是回調(diào)函數(shù),當(dāng)對(duì)象的ajax執(zhí)行完畢后,調(diào)用該函數(shù),函數(shù)可以有參數(shù)function(event,request, settings){}
event是事件名稱 為ajaxcomplete
request是xmlhttprequest對(duì)象
settings表示對(duì)象提交設(shè)置,比如settings.type,如果是get方式提交,返回get,如果是post方式提交返回post,比如settings.url是提交調(diào)用的頁(yè)面以及參數(shù)
舉例:
$(#cn).bind(click,function(){$.get(index4.php,{foraspcnurl:$(#forasp).val()},function(msg){alert(msg);} );});
$(#cn).ajaxcomplete(function(event,request, settings){alert(settings.type);});
2.ajaxerror(callback),ajax 請(qǐng)求發(fā)生錯(cuò)誤時(shí)執(zhí)行函數(shù)
callback是返回函數(shù).function(event,xmlhttprequest,ajaxoptions,thrownerror) {}在處理函數(shù)中可以用this表示監(jiān)聽(tīng)的dom元素
參數(shù):
event是觸發(fā)的事件當(dāng)前event.type表示ajaxerror事件.
xmlhttprequest返回錯(cuò)誤信息內(nèi)容,xmlhttprequest.responsetext就是text文本形式輸出的內(nèi)容.
ajaxoptions跟上面的settings相似,是一些參數(shù)的調(diào)用:ajaxoptions.url,則返回調(diào)用頁(yè)面以及參數(shù)
thrownerror只有當(dāng)異常發(fā)生時(shí)才會(huì)被傳遞,這個(gè)不是很理解.
舉例:
$(#cn).bind(click,function(){$.get(index100.php,{foraspcnurl:$(#forasp).val()},function(msg){alert(msg);} );});
$(#cn).ajaxerror(function(event,xmlhttprequest,ajaxoptions,thrownerror){alert(ajaxoptions.url);});});
3.ajaxsend(callback)ajax 請(qǐng)求發(fā)送前執(zhí)行函數(shù)。
callback 回調(diào)函數(shù):function(evt,request,settings){});
參數(shù)evt 是 是事件,request是xmlhttprequest對(duì)象,setting是提交的設(shè)置.更ajaxcomplete類似.
4.ajaxstart(callback) ajax請(qǐng)求開(kāi)始時(shí)執(zhí)行函數(shù)
5.ajaxstop(callback)ajax請(qǐng)求結(jié)束時(shí)執(zhí)行函數(shù)
6.ajaxsuccess(callback)ajax請(qǐng)求成功時(shí)執(zhí)行函數(shù)。
4,5,6中的callback是執(zhí)行時(shí)調(diào)用的函數(shù),function(){},沒(méi)有參數(shù).直接在函數(shù)體內(nèi)寫執(zhí)行.
2025國(guó)考·省考課程試聽(tīng)報(bào)名