jquery使鼠标滚轮暂时失效

1 禁止滚轮:
2 $(document).bind('mousewheel', function(event, delta) { return false; });
3 
4 启用滚轮:
5 $(document).unbind('mousewheel');
原文地址:https://www.cnblogs.com/nlyangtong/p/12028359.html