//禁止滚动
document.addEventListener('touchmove', function(e){
e.preventDefault();
}, true);
//禁止滑动
var isScoolEnable=true;
document.ontouchmove = function(e) {
if(isScoolEnable)
return true;
return false;
};
document.addEventListener('touchmove', function(e){
e.preventDefault();
}, true);
var isScoolEnable=true;
document.ontouchmove = function(e) {
if(isScoolEnable)
return true;
return false;
};
本文标题:手机禁止屏幕超出内容上下滚动
本文链接:https://www.haomeiwen.com/subject/amrooxtx.html
网友评论