jquery禁止滑鼠滾動的方法:1、開啟對應的程式碼檔案;2、透過“$(document).bind('mousewheel', function(event, delta) {return false;});”禁用滑鼠滾輪事件即可。
本文操作環境:windows7系統、jquery3.2.1版、DELL G3電腦
jquery 怎麼禁止滑鼠滾動?
jQuery停用、開啟滑鼠滾輪事件
1.停用滑鼠滾輪事件
$(document).bind('mousewheel', function(event, delta) {return false;});
2、開啟滑鼠滾輪事件,直接解綁事件就可以
$(document).unbind('mousewheel');
推薦學習:《jquery影片教學》
以上是jquery 怎麼禁止滑鼠滾動的詳細內容。更多資訊請關注PHP中文網其他相關文章!