JavaScript鼠标特效大全(2)

<script type="text/javascript"> function init(){ //重新定义document的滑轮滑动的事件回调函数 document.onmousewheel = function(){ alert('禁止使用滑轮'); //提示用户不可以用滑轮 return false; //返回false,什么也不操作(这句不能少,否则还是会滚动) }; } </script>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzjssw.html