小程序弹框阻止穿透

2018-02-28  本文已影响0人  _嗯_哼_
image.png

直接给弹框绑上一个catchtouchmove事件函数
wxml

<view class="dialog" catchtouchmove="touchHandler"></view>

js

Page({
  data:{},
  touchHandler:funciton(){
    return;
}
})

ps:bind的事件都可以换成catch(一个冒泡,一个不冒泡)

上一篇 下一篇

猜你喜欢

热点阅读