瘋狂

          STANDING ON THE SHOULDERS OF GIANTS
          posts - 481, comments - 486, trackbacks - 0, articles - 1
            BlogJava :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

          jquery 全局事件

          Posted on 2010-04-16 16:29 瘋狂 閱讀(660) 評論(0)  編輯  收藏 所屬分類: jquery

          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的使用方法view plaincopy to clipboardprint?
          <!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> 


          本文來自CSDN博客,:http://blog.csdn.net/gaoyusi4964238/archive/2009/08/13/4443401.aspx

          主站蜘蛛池模板: 精河县| 永春县| 融水| 分宜县| 清河县| 博罗县| 车致| 海门市| 高青县| 资源县| 同德县| 和政县| 石家庄市| 香河县| 仲巴县| 庆城县| 台北市| 鄂温| 靖西县| 横峰县| 南京市| 仁化县| 沿河| 古蔺县| 托克托县| 曲麻莱县| 沂源县| 吴堡县| 绥棱县| 揭东县| 凤城市| 怀集县| 平南县| 正安县| 贺兰县| 石泉县| 兴和县| 镇江市| 义乌市| 乐清市| 赞皇县|