How to assign a value to a global variable using Ajax in JQuery

Source: Internet
Author: User

We want to assign a value to global variables after extracting data from the background using JQuery Ajax, but how can we not assign it? Why?

The reason is actually very simple. Ajax is used for asynchronous operations. That is to say, when you assign a value, the data has not been extracted. Of course you cannot assign it, so you only need to change it to a synchronous operation ~

Method 1: Configure synchronization before Ajax operations.
Copy codeThe Code is as follows:
// Set Ajax Asynchronization to false globally or in a required function, that is, synchronization
$. AjaxSetup ({
Async: false
});

// Then perform your Ajax operations
$. Post (address, parameter, function (data, status ){
If (status = "success "){
// Assign a value to the global variable
}
Else {
Alert ("wrong ");
}
});

Method 2: use $. ajax directly
Copy codeThe Code is as follows:
$. Ajax ({
Type: "post ",
Url: address,
Data: "parameter" + parameter value,
Async: false,
Success: function (data ){
// Assign a value to the global variable;
}
});

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.