jQuery中通過ajaxStart()和ajaxStop()兩個方法提供了類似的功能。當一個Ajax請求啟動時,並且沒有其他未完成的Ajax請求時,將調用ajaxStart()方法。同樣,ajaxStop()方法則是在所有Ajax請求都完成時調用。這些方法的參數都是一個函數,這個函數將在事件發生時被調用。
例子
. 代碼如下:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>無標題頁</title>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#Button1").click(function(){
$.post("Default2.aspx","",function(data){
$("#x").text(data);
},"text");
});
$("#my").ajaxStart(function(){
$(this).show();
}).ajaxStop(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<input id="Button1" type="button" value="button" />
<div id="my" style=" display:none">
<img src="loading.gif" />
</div>
<div id="x"></div>
</form>
</body>
</html>