jquery之ajax——全域事件引用方式以及各個事件(全域/局部)執行順序

來源:互聯網
上載者:User
轉: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>

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.