瘋狂

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

          jquery 全局事件

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

          jquery中各個(gè)事件執(zhí)行順序如下:

          1.ajaxStart(全局事件)

          2.beforeSend

          3.ajaxSend(全局事件)

          4.success

          5.ajaxSuccess(全局事件)

          6.error

          7.ajaxError (全局事件)

          8.complete

          9.ajaxComplete(全局事件)

          10.ajaxStop(全局事件)

                 其中,全局事件可以在ajax相關(guān)方法外引用(比如,通過(guò)該方式將ajax執(zhí)行各個(gè)階段的信息顯示在頁(yè)面某個(gè)地方)。

          下例演示一次ajax請(qǐng)求過(guò)程中各個(gè)事件執(zhí)行的順序,以及全局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(){  
              //點(diǎn)擊按鈕,并執(zhí)行ajax請(qǐng)求  
              $("#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="點(diǎn)擊觸發(fā)ajax請(qǐng)求" id="ajaxReuqestID"/>  
            <div id="ajaxStateID"></div>  
          </body>  
          </html> 


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


          只有注冊(cè)用戶(hù)登錄后才能發(fā)表評(píng)論。


          網(wǎng)站導(dǎo)航:
           
          主站蜘蛛池模板: 永清县| 西乌珠穆沁旗| 永川市| 普定县| 余江县| 特克斯县| 宾阳县| 滦南县| 凤城市| 阜南县| 祁连县| 曲阳县| 淮南市| 交口县| 连江县| 黎川县| 缙云县| 房产| 永宁县| 宜城市| 高碑店市| 永靖县| 赫章县| 呼伦贝尔市| 阿拉善左旗| 平凉市| 临泽县| 洮南市| 华坪县| 涿鹿县| 定南县| 白玉县| 翼城县| 永川市| 布尔津县| 东丽区| 四子王旗| 长丰县| 绩溪县| 建宁县| 邹平县|