How ajax works and how asynchronous requests are encapsulated

Source: Internet
Author: User

Ajax principles:
The client sends asynchronous requests through the built-in object XMLHttpRequest in the browser. When the server returns an response, it calls the previously registered callback function. In the callback function, you can use javascript to operate DOM to update the page, asynchronous requests do not block client operations, so that data can be updated if the page cannot be refreshed.
Encapsulation of asynchronous requests:
Copy codeThe Code is as follows:
Var xhr = false;
// Step 1: Create an XMLHttpRequest object compatible with different browser versions
If (window. XMLHttpRequest) {// IE7 +, Firefox, Chrome, Opera, Safari
Xhr = new XMLHttpRequest ();
} Else {
If (window. ActiveXObject) {// IE browser
Xhr = new ActiveXObject ("Microsoft. XMLHTTP"); // IE5 +
}
}
// Step 2: Set the callback function
Xhr. onreadystatechange = myCallback;
// Step 3: Create an asynchronous request
Xhr. open ("method", "url", true );
// If it is post: you need to set the encoding method for the request message body data.
Xhr. setRequestHeader ("Content-Type", "application/x-www-form-urlencoded ");
// Step 4: Send an asynchronous request
Xhr. send (content); // If the get method content is null, if it is post, the content is a "name = value" pair.

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.