当前位置: 代码迷 >> 综合 >> 移动端设置禁用屏幕滑动事件
  详细解决方案

移动端设置禁用屏幕滑动事件

热度:51   发布时间:2023-10-08 22:41:38.0

//实现滚动条无法滚动

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

}

  相关解决方案