鼠标滚动事件

把百度地图引动到当前页面时,会出现这种情况:鼠标在地图上滚动时,页面也会滚动。怎么让地图动、页面不动呢?代理基于jquery的mousewheel事件,组织事件冒泡。$('body').delegate('#allmap','mousewheel',function(){ console.log('map wheel'); return false;});
ok测试没有问题。

This method is working in IE9+, Chrome 33, and Firefox 27.

$(window).bind('mousewheel DOMMouseScroll', function(event){
     if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {
         // scroll up
         alert("up");
     }
     else {
         // scroll down
      alert("down");
     }
 });

你可能感兴趣的:(鼠标滚动事件)