Home  >  Article  >  Web Front-end  >  How to disable mouse scrolling in jquery

How to disable mouse scrolling in jquery

藏色散人
藏色散人Original
2021-11-12 10:14:202680browse

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.

How to disable mouse scrolling in jquery

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn