How to disable mouse scrolling in jquery

藏色散人
Release: 2021-11-12 10:14:20
Original
2807 people have browsed it

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;});
Copy after login

2. Enable the mouse wheel event and unbind the event directly

$(document).unbind('mousewheel');
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!