Home > Article > Web Front-end > How to disable mouse scrolling in jquery
How to disable mouse scrolling in jquery: 1. Open the corresponding code file; 2. Pass "$(document).bind('mousewheel', function(event, delta) {return false;});" Just disable mouse wheel events.
The operating environment of this article: windows7 system, jquery3.2.1 version, DELL G3 computer
jquery How to disable mouse scrolling?
jQuery disables and enables the mouse wheel event
1. Disable the mouse wheel event
$(document).bind('mousewheel', function(event, delta) {return false;});
2. Enable the mouse wheel event and unbind the event directly
$(document).unbind('mousewheel');
Recommended learning: "jquery video tutorial"
The above is the detailed content of How to disable mouse scrolling in jquery. For more information, please follow other related articles on the PHP Chinese website!