微信小程序 阻止弹窗后滚动穿透 和点击穿透

.mask{ 
  position: fixed; 
  top: 0; 
  left: 0; 
  z-index: 99; 
  width: 100%; 
  height: 100%; 
  background-color:#000; 
  opacity:0.4; 
} 

简单小程序自身提供了相应的方法:

1.   catchtap:和bindtap相对应,catchtap有着阻止事件冒泡的作用;

2.   catchtouchmove:阻止浮层穿透到页面上,这里用到了scroll-view就顺带提一下,这是小程序组件视图容器,表示可滚动视图区域。

你可能感兴趣的:(wx:小程序)