我Jquery 1.8.3
在我的网站上使用。
我无法用这个 jquery 版本绑定鼠标滚轮,但1.4.2
版本是成功绑定鼠标滚轮。
请给我一个解决这个问题的方法?
注意:我需要只绑定1.8+
版本的鼠标滚轮。因为其他插件依赖于Jquery 1.8+
我的示例代码是:
<!DOCTYPE html>
<html>
<head>
<title>Mouse Wheel</title>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.4.2.js'></script>
<style type='text/css'>
body { text-align: center; }
#res
{
margin-top: 200px;
font-size: 128px;
font-weight: bold;
}
</style>
<script type='text/javascript'>
$(document).ready(function(){
var num = 0;
$(document).bind('mousewheel',function(e){
if (e.wheelDelta > 0)
{
$("#res").text(++num);
}
else
{
$("#res").text(--num);
}
});
});
</script>
</head>
<body>
<div id="res">0</div>
</body>
</html>