如何防止在移动设备中滚动?
我已经尝试过这三种解决方案(但仍然没有工作):
在CSS中
body {
overflow: hidden;
position: fixed; (tried absolute too)
top:0;
bottom:0;
left:0;
right:0;
margin:0;
width:100%;
height:100%;
}
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1, user-scalable=0" />
另外:我无法使用:
document.body.addEventListener("touchmove", function(e){e.preventDefault();});
因为其他要求。
请帮忙。非常感谢提前。