html, body {
overflow: hidden;
height: 100%;
}
document.body.addEventListener('touchmove', function (e) {
e.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果)
}, {passive: false}); //passive 参数不能省略,用来兼容ios和android
本文共 个字数,平均阅读时长 ≈ 分钟,您已阅读:0时0分0秒。
649494848