In-depth analysis of jquery ajax request instances

Source: Internet
Author: User

Jquery encapsulates some ajax request methods, which are very practical.
For example. ajaxComplete () -- when the request is complete. ajaxError () -- when the request fails. ajaxSend () -- append a function to execute the Ajax request. ajaxStart () -- when the request starts ,. ajaxStop () -- end of request. ajaxSuccess () -- when the request is successful. load () -- load data from the server and replace the returned HTML with jQuery. post () -- use an http post request to load server data. serialize () -- encode the form element set into a string for submission. serializeArray () -- encode the form element set into a key-Value Pair array jQuery. param () -- creates a serialized array or object that applies to a URL query string or Ajax request jQuery. getScript () -- load a js file from the server and execute jQuery. getJSON () -- load JSON-encoded data jQuery from the server. get () -- load data from the server. In short, 2.1 ,. ajaxStart () and. ajaxStop () Copy codeThe Code is as follows: <! Doctype html>
<Html>
<Head>
<Script type = "text/javascript" src = "test/jquery-1.7.2.min.js"> </script>
<Script type = "text/javascript">
$ (Document). ready (function (){
$ ('. Log1'). ajaxStart (function (){
$ (This). text ('triggered ajaxStart handler .');
});
$ ('. Log2'). ajaxStop (function (){
$ (This). text ('triggered ajaxStop handler .');
});
$ ('. Trigger'). click (function (){
Certificate ('.result'{.load('xixi.html ');
});
});
</Script>
</Head>
<Body>
<Div class = "trigger"> Trigger </div>
<Div class = "result"> </div>
<Div class = "log1"> </div>
<Div class = "log2"> </div>
</Body>
</Html>

In the code, classloads A xixi.html for the element of the result, and the content in this file is casual, as long as the file exists. The order of js execution methods is firstCopy codeThe Code is as follows: $ (this). text ('triggered ajaxStart handler .');

Then
The content in xixi.html is written to the element whose class is result.
LastCopy codeThe Code is as follows: $ (this). text ('triggered ajaxStop handler .');

II,Copy codeThe Code is as follows:. ajaxSend (),. ajaxComplete (),. ajaxSuccess (), and. ajaxError ()

[Html]Copy codeThe Code is as follows: <! Doctype html>
<Html>
<Head>
<Script type = "text/javascript" src = "test/jquery-1.7.2.min.js"> </script>
<Script type = "text/javascript">
$ (Document). ready (function (){
$ ('. Log1'). ajaxStart (function (){
$ (This). text ('triggered ajaxStart handler. '); // [1]
});
$ ('. Log2'). ajaxStop (function (){
$ (This). text ('triggered ajaxStart handler. '); // [5]
});
$ ('. Result'). ajaxSend (function (){
$ (This). text ('triggered ajaxSend handler. '); // [2]
});
$ ('. Result'). ajaxComplete (function (){
$ (This). text ('triggered ajaxComplete handler. '); // [4]
});
$ ('. Result'). ajaxSuccess (function (){
$ (This). text ('triggered ajaxSuccess handler. '); // [3]
});
$ (". Result"). ajaxError (function (){
$ (This). text ("Triggered ajaxError handler .");
});
$ ('. Trigger'). click (function (){
Certificate ('.result'{.load('xixi.html ');
});
});
</Script>
</Head>
<Body>
<Div class = "trigger"> Trigger </div>
<Div class = "result"> </div>
<Div class = "log1"> </div>
<Div class = "log2"> </div>
</Body>
</Html>

In the above Code, the class still loads an html file for result.
The execution sequence code has been marked
If an error occurs during the request, such as the file does not exist, the method in. ajaxError () is executed instead of in. ajaxSuccess.
In the past, I was always confused about ajax. Now I have a comprehensive understanding. To sum up, I hope to learn it together. In addition, it is worth studying whether the request method is HTTP GET or HTTP POST.
Jquery introduces the use of ajax addresses
Andy _ becomes more responsible.

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.