场景:
在iOS上12没有适用于iOS 11解决方案不起作用。
试过CSS:
body.modal-open {
overflow: hidden;
position:fixed;
width: 100%;
}
而这也
body.modal-open {
touch-action: none;
}
试图JS:
document.body.addEventListener('touchmove', function(e) {
e.preventDefault();
});
问题:
- 是否有可能避免身体滚动iOS上12?