小程序自定义蒙版防止触摸穿透
在蒙版组件上绑定catchtouchmove事件:<view catchtouchmove = "doNotMove"></view>然后定义事件处理函数: doNotMove: function () { console.log('stop user scroll it!'); return; },***要注意,绑定的是touch...