这个事件在标准下和IE下是有区别的。
firefox是按标准实现的,事件名为"DOMMouseScroll ",IE下采用的则是"mousewheel "。
var mousewheel = document.all? "mousewheel": "DOMMouseScroll";
$( ' div.mousewheel_example ' )
.bind( ' mousewheel ' , function (event, delta) {
var dir = delta > 0 ? ' Up ' : ' Down ' ,
vel = Math.abs(delta);
$(this).text(dir + ' at a velocity of ' + vel);
return false ;
});
});