有没有一种方法可以scroll在jQuery中获取鼠标滚轮事件(而不是谈论事件)?
scroll
$(document).ready(function(){ $('#foo').bind('mousewheel', function(e){ if(e.originalEvent.wheelDelta /120 > 0) { console.log('scrolling up !'); } else{ console.log('scrolling down !'); } }); });