这个问题真是愁了好久,终于完美解决了。
document.body.addEventListener('touchmove',function(e){
e.preventDefault();//阻止默认的处理方式(阻止下拉滑动的效果)
}, {passive:false});
如果不加passive:false,在 ios 上是不能起作用的。
这个问题真是愁了好久,终于完美解决了。
document.body.addEventListener('touchmove',function(e){
e.preventDefault();//阻止默认的处理方式(阻止下拉滑动的效果)
}, {passive:false});
如果不加passive:false,在 ios 上是不能起作用的。