<script> // 禁止鼠标滑轮滚动 function disable_scroll() { if (window.addEventListener) { window.addEventListener('DOMMouseScroll', function () { event.preventDefault(); }, false); } window.onmousewheel = function () { event.preventDefault(); }; } // 开始鼠标滑轮滚动 function enable_scroll() { if (window.removeEventListener) { window.removeEventListener('DOMMouseScroll', function () { event.preventDefault(); }, false); } window.onmousewheel = null; } // 按钮点击时调用 $(".nav a").click(function(){
// 先禁止鼠标滑轮滚动 disable_scroll();
// 用定时器,启用鼠标滑轮滚动 setTimeout(enable_scroll,1000); }); </script>