js 禁止鼠标滚动

来源:互联网 发布:淘宝服装展示架 编辑:程序博客网 时间:2024/05/16 15:21
window.onload=function(){    var oDiv=document.getElementById("top");    oDiv.onmouseover = function () {        if(window.event){            document.onmousewheel = function () {                window.event.returnValue="false";                return false;            }        }else{            oDiv.addEventListener("DOMMouseScroll",function(ev){ev.preventDefault();} , false);        }    };    oDiv.onmouseout=function(){        document.onmousewheel=null;    }}
0 0
原创粉丝点击