The $.ajax method based on jquery makes the resolution of the page flicker by asynchronous request _jquery

Source: Internet
Author: User

Scene

Currently there is a need to fill in the text box, automatically trigger the KeyUp event, the Drop-down list will automatically filter the appropriate options, but the use of $,ajax found that every time the event triggered, causing the entire Web page flashing, triggering the global Ajax event

Code fragment

$.ajax ({ 
type: "POST", 
url:root + "/xxx, 
data:requestdata, 
dataType:" JSON ", 
success: function (data) { 
//Empty list 
$ ("#formOpinion #listLeft"). empty (); 
$.each (data, 
function (i, $data) { 
var $option = $ ("<option name= ' Opinion.tag ' value=" 
+ $data. Code + $ Data.name + ">" + $data. Code 
+ $data. Name + "</option>"); 
Bind data to Listleft 
$ ("#formOpinion #listLeft"). Append ($option); 
} 
 

Solution

View the jquery API documentation found that there is a global attribute in the $.ajax. You can set whether to globally scope AJAX events, default to True, and false to




The above content is small to introduce the jquery based on the $.ajax method of asynchronous request cause page flicker solution, hope to all help!

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.