Ajax Preloader在Firefox中无法在Chrome浏览器中运行

Ajax Preloader在Firefox中无法在Chrome浏览器中运行,第1张

Ajax Preloader在Firefox中无法在Chrome浏览器中运行

我看过你的密码

众所周知,同步请求将锁定UI。因此,在chrome和safari上就不足为奇了(有趣的是在Firefox中)

你可以尝试这样的事情吗

jQuery('#customtag_widget-2 .compare_attribute').bind('change',jQuery.filterProductsCompare2 = function () {$.ajaxSetup({async:false});jQuery('#ajax_loader_div').css('display', 'block');jQuery('#ajax_loader_div').html('<img src="http://vcompare4u.com/wpcompare/wp-content/themes/compare/_assets/img/ajax-loader.gif" / >');jQuery('#customtag_widget-2 .compare_attribute_group').each(function () {        jQuery(this).children().each(function () { if (jQuery(this).children('.compare_attribute').attr('checked')) {     if (jQuery(this).children('.compare_attribute').attr('name').indexOf('b[') != -1) {         brands.push(jQuery(this).children('.compare_attribute').attr('value'));     }     if (jQuery(this).children('.compare_attribute').attr('name').indexOf('c[') != -1) {         categories.push(jQuery(this).children('.compare_attribute').attr('value'));     } }        })    } else {        minmaxarr = jQuery(this).attr('value').split(';');        minPrice = minmaxarr[0];        maxPrice = minmaxarr[1];    }    if (!jQuery.support.placeholder) {        if (isEmptyPlaceholder == 1) { jQuery(this).val('Search...');        }    }})if (jQuery('#dont_change_price').is(':checked')) {    minPrice = jQuery('#overall_min').val();    maxPrice = jQuery('#overall_max').val();} else {}jQuery.ajax({    url : file_url,    data: {        ajaxsearch : '1',        s : 'compare',        ki : keywords_comparei,        product : '',        c : categories,        b : brands,        checked_id : checked_string,        dont_change_price : dont_change_price,        min : minPrice,        max : maxPrice,        product_category : product_category    },    success : function (data) {        // Do stuff here    }});jQuery.ajax({    url : bracket_file_url,    data: {        ajaxsearch : '1',        s : 'compare',        ki : keywords_comparei,        product : '',        c : categories,        b : brands,        checked_id : checked_string,        min : minPrice,        max : maxPrice,        product_category : product_category    },    success : function (bracket_data) {        // DO stuff here    }});if (!jQuery('#dont_change_price').is(':checked')) {jQuery.ajax({    url : price_file_url,    data: {        ajaxsearch : '1',        s : 'compare',        ki : keywords_comparei,        product : '',        c : categories,        b : brands,        checked_id : checked_string,        min : minPrice,        max : maxPrice,        product_category : product_category    },    success : function (price_data) {        // DO stuff here    }});}jQuery('#ajax_loader_div').hide();jQuery('#ajax_loader_div').html('');$.ajaxSetup({async:true});});

我想做的是为每个ajax请求执行同步请求,而不是使用成功函数,我分别使用ajax请求。由于同步的性质,每个请求将一个接一个地处理。

在chrome控制台中检查您的代码,我已经看到Ajax加载器非常少的时间立即被隐藏起来。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5016449.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存