标签:滚动条 efault 滚动 def event 页面 false var listener
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);
}
标签:滚动条 efault 滚动 def event 页面 false var listener
原文地址:https://www.cnblogs.com/150536FBB/p/10552884.html