就是点击显示层 可是手指滑动层仍是连带这底部页面一块儿滑动html
https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.htmlcode
wxmlxml
<!-- loading --> <view class='loading' catchtouchmove="noTouch" hidden="{{isLoading}}"> <image src='/images/loading.gif'></image> </view>
jshtm
Page({ data: { isLoading: false }, // 自定义防止点透效果 noTouch: function () { return; }, })