gpt4 book ai didi

jQuery 滚动绑定(bind)不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 14:22:08 24 4
gpt4 key购买 nike

我有以下 html 页面。为什么滚动鼠标时警报不起作用?

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>


<script>
$(window).scroll(function(){
alert("scrolling");
});
</script>
</head>
<body>

</body>
</html>

编辑:当页面右侧有滚动条并且滚动向下移动页面时,它会起作用。但我希望它能在空白页面上工作,例如。

EDIT2:我已将 document.body 更改为 window 但遇到同样的问题。

EDIT3:所以,我得出的结果是我想捕捉鼠标滚轮事件

最佳答案

不是主体而是窗口。
不过我会在文档准备好之后再放。
这是一个工作代码:

    $(document).ready( function ()
{
console.log('ready');
$(window).scroll( function ()
{
console.log('scroll');
});
});

回答您的编辑 3
要捕获鼠标滚轮事件,请使用 jquery mousewheel_plugin 参见此 example
所以你的代码将是

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="jQuery_mousewheel_plugin.js"></script>
<script>

var intOverallDelta = 0;

$(document).ready( function ()
{
console.log('ready');
$(document.body).mousewheel(function(objEvent, intDelta)
{
if (intDelta > 0)
{
intOverallDelta++;
console.log('up - (' + intOverallDelta + ')');
}
else if (intDelta < 0)
{
intOverallDelta--;
console.log('down - (' + intOverallDelta + ')');
}
});
});

</script>

关于jQuery 滚动绑定(bind)不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9093370/

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