设置滚动条禁止和启用

设置滚动条禁止:

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");

 

posted @ 2016-12-05 15:36  承载梦想-韩旭明  阅读(349)  评论(0编辑  收藏  举报