gpt4 book ai didi

javascript - 检测鼠标滚轮滚动的次数

转载 作者:行者123 更新时间:2023-11-28 12:22:45 25 4
gpt4 key购买 nike

我正在尝试实现类似 here 的效果.每次滚动滚轮时,我都想执行一个操作,无论用户尝试滚动多少次。我将如何计算用户尝试滚动的次数?我一直在玩 $(window).on('scroll'...。谢谢

最佳答案

你的意思是这样的:

(function() {
var scroll = 0;
$(document).on('mousewheel DOMMouseScroll', function(event) {
scroll++;
console.log(event);
});

$('#click').on('click', function() {
alert(scroll);
});
})();

<button id="click">Show me</button>

http://jsfiddle.net/eHEmr/

(你显然可以用自己的代码代替 scroll++;)

关于javascript - 检测鼠标滚轮滚动的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18751793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com