嘿傢伙我有這個jQuery代碼的問題。其實它工作正常,但我不能關閉div後滾動我的滾輪。JQuery啓用和禁用滾動
$(document).ready(function() {
$("#add_item_inventory_toggle").click(function() {
$("#add_item_inventory").fadeOut("fast");
$("#add_item_inventory_toggle").hide();
$('body').off('scroll mousewheel touchmove', function(e) {
e.preventDefault();
e.stopPropagation();
return false;
});
});
$("#inventory_content_add_items").click(function() {
$("#add_item_inventory").fadeIn("fast");
$("#add_item_inventory_toggle").show();
$('body').on('scroll mousewheel touchmove', function(e) {
e.preventDefault();
e.stopPropagation();
return false;
});
});
});
感謝您的快速響應,它的作品非常好! :D – VeloFX
你很歡迎!樂於幫助。祝你好運! – AtheistP3ace