如图这样的上拉下拉能不能够把他给禁止了 禁止body拖动
谢谢大神们的帮助 晚上回去试试 是ios上就避免不了吗?
在Page的json配置(注意是该Page的json配置文件,不是app.json)里这样设置:
{
“disableScroll”: true
}
把最上层的元素注册catchtouchmove事件
<view catchtouchmove=“stopDrag”>
</view>
js:
stopDrag(){
return false;
},
Android上应该是可以的, 在page.json中配置disableScroll
用了GeeFib的方法 解决了 再次感谢!
https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html