1
Smipto OP 在线等,求解~
|
2
alphardex Sep 5, 2020 之前也碰到过,直接禁止页面容器滑动就行了
```js const disableTouchMove = () => { document.body.addEventListener('touchmove', e => { e.preventDefault() }, { passive: false }); } ``` |