禁用鼠标滚轮/或任何滚动jquery
我与我希望禁用滚动,而datais通过Ajax加载的情况。禁用鼠标滚轮/或任何滚动jquery
我曾尝试: -
jQuery.ajax({ type: 'POST',
url: '<?php echo get_site_url();?>/wp-admin/admin-ajax.php',
data: {
action: 'my_cat_page',
bar: bids,
price: pids,
catid: ids,
status: both,
area: zids,
cuis: cids,
noc: noc
},
beforeSend: function() {
jQuery('#TB_overlay').css('display', 'block');
jQuery(window).scroll().disable();
},
complete: function() {
jQuery('#TB_overlay').css('display', 'none');
jQuery("#right_search").html(html);
},
success: function (html) {
jQuery("#right_search").html(html);
jQuery(window).scroll().enable();
},
failure: function (html) {
jQuery("#right_search").html("Ajax Failure! Please try again.");
}
});
没有运气。
回答:
试试这个:
$(document).ready(function() { $(document).ajaxStart(function() {
$("body").css("overflow","hidden");
}).ajaxStop(function() {
$("body").css("overflow","auto");
});
});
不要注释掉所有jQuery(window).scroll().disable() & enable();
代码。
以上是 禁用鼠标滚轮/或任何滚动jquery 的全部内容, 来源链接: utcz.com/qa/259885.html