标签: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
标签:style blog http io ar on div log bs
原文地址:http://www.cnblogs.com/lixiuran/p/4141367.html