Maison > Questions et réponses > le corps du texte
想要在手机的页面上弹出框弹出来的时候,背后的页面内容锁定不能上下滚动,只有弹出框内的内容可以滚动。关闭弹出框的时候让页面再恢复可上下滚动状态。弹出框是自己编写的一个p。onmousewheel="return false;"
只有在PC上才好使,在手机上不适用。
然后找到了这个
document.addEventListener('touchmove', function (event) { event.preventDefault();}, false);
但又会无差别的把整个boby的内容都禁止滚动,实现不了需求。
请问有没有大神有其他的解决方法?
天蓬老师2017-04-10 16:49:02
弹出拟态窗口的时候给body
设置:
html,
body {
height: 100%;
overflow: hidden;
}
关闭拟态窗口就:
html,
body {
overflow: visible
}