我必须找出哪个元素滚动(y轴)。
我需要这个以下活动:
$(document).bind('touchmove', function (event)
$(document).bind('mousewheel DOMMouseScroll MozMousePixelScroll', function (event)
在滚动任何元素时也可以访问这些事件
答案 0 :(得分:1)
你可以用这个:
$(document).bind('mousewheel DOMMouseScroll MozMousePixelScroll', function (event){
console.log(event.target);// or alert it like below to know the id or any
alert(event.target.id);
});