Jquery code for processing multiple ajax requests at a time

Source: Internet
Author: User

Copy codeThe Code is as follows: $ (document). ready (function (){
$ ('# Getsetgo'). click (function (){
$. When ($. ajax ("page1.php"), $. ajax ("page2.php"). done (function (a1, a2 ){
Certificate ('incluid1'0000.html (a1 [0]);
Certificate ('shortid2'short.html (a2 [0]);
});
});
});

After jquery 1.5 is released, the newly added method jQuery. when () can process multiple ajax requests at a time. For more details, see the jquery api documentation.
Collection by Ancker

Jquery another method for processing multiple ajax requests on the same page
Add a parameterCopy codeThe Code is as follows: $. post (
"Dow.hfile. aspx ",
{
Type: '1'
},
Function (data, textStatus)
{
},
"Json ");
$. Post (
"Dow.hfile. aspx ",
{
Type: '2'
},
Function (data, textStatus)
{
},
"Json ");

In the dow.hfile. aspx. cs file:Copy codeThe Code is as follows: if ((! String. IsNullOrEmpty (Request ["type"]) & (Request ["type"] = "1 "))
{
// Do something
}
If ((! String. IsNullOrEmpty (Request ["type"]) & (Request ["type"] = "2 "))
{
// Do something
}

The different ajax requests can be processed on the same page. You do not need to create a new page for each ajax request.

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.