1、部分手机端使用没有效果:
document.documentElement.style.overflow = "hidden";
//或者
document.body.style.overflow = "hidden";
2、移动端禁止滑动:
//禁止移动端的移动
document.addEventListener("touchmove",function(event) {
//监听滚动事件
if (!_this.sideow) {
event.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果)
}
},
{ passive: false }
); //passive 参数不能省略,用来兼容ios和android