网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的范文:

 

标题 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>
    以上所述是小编给大家介绍的jQuery中Ajax全局事件引用方式及各个事件(全局/局部)执行顺序的相关知识,希望对大家有所帮助
随便看

 

在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/13 17:27:58