Ajax example for solving global variable assignment problems

Source: Internet
Author: User

Ajax default is asynchronous request, if you want to $.ajax ({inside the global variable assignment, you need to sync operation, that is, add async:false, you can

Today, when I was working on a project, I ran into a problem. I'm using Ajax to assign a value to a global variable in $.ajax ({inside). The result is not worth, entangled for a half-day, and then online check, just know, AJAX default is asynchronous request, (when you want to assign value, this time the value did not get, so the assignment is not successful) if you want to be in $.ajax ({     The inside to the global variable assignment, need to change to sync operation, that is, plus async:false, it can be. The code is as follows: $.ajax ({type: "post", url: "A.action", data: {}, DataType: ' Text ', async:false,//set to synchronous operation can assign a value to global variable success success: function (data) {Usersname = Data;//usersname is a previously declared 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.