轉:http://www.cnblogs.com/shuang121/archive/2012/06/06/2537862.html
jquery之ajax——全域事件引用方式以及各個事件(全域/局部)執行順序
jquery中各個事件執行順序如下:
1.ajaxStart(全域事件)
2.beforeSend(局部事件)
3.ajaxSend(全域事件)
4.success(局部事件)
5.ajaxSuccess(全域事件)
6.error(局部事件)
7.ajaxError (全域事件)
8.complete(局部事件)
9.ajaxComplete(全域事件)
10.ajaxStop(全域事件)
其中,全域事件可以在ajax相關方法外引用(比如,通過該方式將ajax執行各個階段的資訊顯示在頁面某個地方)。
下例示範一次ajax請求過程中各個事件執行的順序,以及全域ajax的使用方法
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<mce:script src="http://code.jquery.com/jquery-latest.js" mce_src="http://code.jquery.com/jquery-latest.js"></mce:script>
<mce:script type="text/javascript"><!--
$(function(){
//點擊按鈕,並執行ajax請求
$("#ajaxReuqestID").click(function(){
$.ajax({
url: "http://blog.csdn.net/gaoyusi4964238",
beforeSend:function(){
$("#ajaxStateID").text("berforeSend");
alert("berforeSend");
},
success: function(){
$("#ajaxStateID").text("success");
alert("success");
},
error:function(){
$("#ajaxStateID").text("error");
alert("error");
},
complete:function(){
$("#ajaxStateID").text("complete");
alert("complete");
}
});
});
$("#ajaxStateID").ajaxStart(function(){
$(this).text("ajaxStart");
alert("ajaxStart");
}).ajaxSend(function(){
$(this).text("ajaxSend");
alert("ajaxSend");
}).ajaxSuccess(function(){
$(this).text("ajaxSuccess");
alert("ajaxSuccess");
}).ajaxError(function(){
$(this).text("ajaxError");
alert("ajaxError");
}).ajaxComplete(function(){
$(this).text("ajaxComplete");
alert("ajaxComplete");
}).ajaxStop(function(){
$(this).text("ajaxStop");
alert("ajaxStop");
});
})
// --></mce:script>
</head>
<body>
<input type="button" value="點擊觸發ajax請求" id="ajaxReuqestID"/>
<div id="ajaxStateID"></div>
</body>
</html>