How to disable mouse scrolling in jquery
Nov 12, 2021 am 10:14 AMHow 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!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of jQuery reference methods: Quick start guide

How to use PUT request method in jQuery?

How to remove the height attribute of an element with jQuery?

jQuery Tips: Quickly modify the text of all a tags on the page

In-depth analysis: jQuery's advantages and disadvantages

Use jQuery to modify the text content of all a tags

Understand the role and application scenarios of eq in jQuery

Summary of commonly used file operation functions in PHP
