jquery Global Ajax event using code _jquery

Source: Internet
Author: User
Copy Code code as follows:

<title>jquery ajax-ajaxevent</title>
<script src= ". /jquery-1.4.3.js "type=" Text/javascript "></script>
<script type= "Text/javascript" >
$ (document). Ready (function ()
{
$ ("#btnAjax"). Bind ("click", Function (event)
{
$.get ("default.aspx", {"Resulttype": "dddd"},function (data) {$ ("#divResult"). html (Date;});
})
Execute function when AJAX request completes
$ ("#divResult"). Ajaxcomplete (function (evt, request, Settings) {$ (this). Append (' <div>ajax execution completed </div> <br/> '); })
Execute function when an AJAX request has an error
$ ("#divResult"). Ajaxerror (function (evt, request, Settings) {$ (this). Append (' <div>ajax execution error </div>< br/> '); })
AJAX request execution function before sending
$ ("#divResult"). Ajaxsend (function (evt, request, Settings) {$ (this). Append (' <div>ajax execute before sending </div><br /> '); })
Execute function at start of AJAX request
$ ("#divResult"). Ajaxstart (function () {$ (this). Append (' <div>ajax starts executing </div><br/> ');})
Execute function at end of AJAX request
$ ("#divResult"). Ajaxstop (function () {$ (this). Append (' <div>ajax execution end </div><br/> ');})
Execute function when AJAX request succeeds
$ ("#divResult"). Ajaxsuccess (function (evt, request, Settings) {$ (this). Append (' <div>ajax execution success </div>< br/> '); })
});
</script>
<body>
&LT;BR/><button id= "Btnajax" > Send Ajax request </button><br/>
<div id= "Divresult" ></div>
</body>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.