移动端禁止拉动页面


移动端禁止拉动页面

1
2
3
document.body.addEventListener('touchmove', function (e) {
e.preventDefault();
}, {passive: false});