css添加:
html, body {
overflow: hidden;
height: 100%;
}
js添加:
document.body.addEventListener('touchmove', function (e) {
e.preventDefault(); //阻止默認(rèn)的處理方式(阻止下拉滑動(dòng)的效果)
}, {passive: false}); //passive 參數(shù)不能省略,用來(lái)兼容ios和android
css添加:
html, body {
overflow: hidden;
height: 100%;
}
js添加:
document.body.addEventListener('touchmove', function (e) {
e.preventDefault(); //阻止默認(rèn)的處理方式(阻止下拉滑動(dòng)的效果)
}, {passive: false}); //passive 參數(shù)不能省略,用來(lái)兼容ios和android