在jQuery中获取鼠标滚轮事件?

有没有一种方法可以scroll在jQuery中获取鼠标滚轮事件(而不是谈论事件)?

回答:

​$(document).ready(function(){

$('#foo').bind('mousewheel', function(e){

if(e.originalEvent.wheelDelta /120 > 0) {

console.log('scrolling up !');

}

else{

console.log('scrolling down !');

}

});

});

以上是 在jQuery中获取鼠标滚轮事件? 的全部内容, 来源链接: utcz.com/qa/431723.html

回到顶部