jquery ajax Async Parameters cause Firefox browser splash screen

Source: Internet
Author: User

Async default is True, which is asynchronous, $. After Ajax executes, it will continue to follow the footsteps of Ajax until the server side returns data, triggering $. The success method in Ajax. Two threads are executed at this time.

My flash-screen situation is:

The code is as follows Copy Code
$.ajax ({
Type: "Post",
URL: "index.php",
Data: {},
Async:false,
Beforesend:function () {},
Success:function (data) {
//...
},
Complete:function () {}
});

Here, my async is set to False, the original intention is to return the data and then execute $. Ajax behind the script, did not think this place has led to a splash screen in Firefox browser. (Firefox 11.0), the scroll bar down to the bottom of the trigger Ajax situation. Splash screen

Finally, the Async:false comment out, that is, async for ture case, successfully resolved the Firefox browser scroll down to the bottom of the trigger Ajax flash screen problem.

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.