猿问

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

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

有什么方法可以让鼠标轮事件发生(不是说scroll事件)在jQuery中?



有只小跳蛙
浏览 486回答 3
3回答

芜湖不芜

$(document).ready(function(){     $('#foo').bind('mousewheel', function(e){         if(e.originalEvent.wheelDelta /120 > 0) {             console.log('scrolling up !');         }         else{             console.log('scrolling down !');         }     });});
随时随地看视频慕课网APP
我要回答