Jquery synchronously calls Ajax

Source: Internet
Author: User

Because Ajax calls in jquery are asynchronous by default, problems may occur when synchronous execution is required. For example, if I have a form, I want to verify a text box before submitting it (to submit it to the server for database connection verification), the server will not return the verification result when submitting it, the form has been submitted.

Solution:

1. Set async: false directly in $. Ajax ().

$. Ajax ({
Type: "Post", // HTTP Request Method
URL: "xmlserver", // URL of the server segment
Data: "username =" + username, // data sent to the server segment
Datatype: "html", // inform jquery of the returned data format
Success: callback, // callback function called when the interaction is complete and the server correctly returns data
Async: false
});

2. Use $. ajaxsetup ({async: false });

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.