在微信小程序中定义了一个半透明遮罩层,上面显示提示的文字;
但是这是一个长页面,遮罩出现的时候,页面依然可以上下滑动;
为了在遮罩出现的时候禁止用户滑动页面,如下处理:
给这个遮罩层 绑定事件: 使用 catchtouchmove
<view catchtouchmove="noneEnoughPeople"> 我是遮罩层 </view> function noneEnoughPeople(){ console.log('啥也不干就行,空函数哈哈哈'); }