设置滚动条禁止:
document.documentElement.style.overflow="hidden";//谷歌测试生效 document.body.style.overflow="hidden"; $("body").on("touchmove",function(event){//移动端生效 event.preventDefault; }, false);
设置滚动条启用:
document.documentElement.style.overflow="visible"; document.body.style.overflow="visible"; $("body").off("touchmove");