码迷,mamicode.com
首页 > Web开发 > 详细

jquery鼠标移入某区域屏蔽鼠标滚轮 滚动滚动条

时间:2014-12-03 22:53:38      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   on   div   log   bs   

<script>
    var firefox = navigator.userAgent.indexOf(‘Firefox‘) != -1;
    function MouseWheel(e) {
    ///对img按下鼠标滚路,阻止视窗滚动
        e = e || window.event;
        if (e.stopPropagation) e.stopPropagation();
        else e.cancelBubble = true;
        if (e.preventDefault) e.preventDefault();
        else e.returnValue = false;

        //其他代码
    }
    window.onload = function () {
        var img = document.getElementById(‘img‘);
        firefox ? img.addEventListener(‘DOMMouseScroll‘, MouseWheel, false) : (img.onmousewheel = MouseWheel);
    }
</script><div style="height:100px"></div>
<img src="http://avatar.profile.csdn.net/C/5/A/1_px372265205.jpg" id="img" style="width:200px"/>
<div style="height:1000px"></div>

 帖子地址:http://bbs.csdn.net/topics/390516035

jquery鼠标移入某区域屏蔽鼠标滚轮 滚动滚动条

标签:style   blog   http   io   ar   on   div   log   bs   

原文地址:http://www.cnblogs.com/lixiuran/p/4141367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!