移动端禁止页面滑动

var mo=function(e){
    e.preventDefault()
 };

/***禁止滑动***/
function stop(){
    document.body.style.overflow='hidden';
    document.addEventListener("touchmove",mo,false);//禁止页面滑动
}

/***取消滑动限制***/
function move(){
    document.body.style.overflow='';//出现滚动条
    document.removeEventListener("touchmove",mo,false);
}

  

posted @ 2019-04-19 10:29  yvioo  阅读(617)  评论(0编辑  收藏  举报