// 检查是否有滚动条,若有则禁止使用(此时上下键、鼠标滚轮、拖动滚动条均无效) if (document.documentElement.clientHeight < document.documentElement.offsetHeight) { var scrollTop = $(window).scrollTop(); $(window).on('scroll', function () { $(this).scrollTop(scrollTop); }); } // 恢复滚动条的使用 $(window).off('scroll');
Copyright © 2024 码农人生. All Rights Reserved