美文网首页
小程序弹框阻止穿透

小程序弹框阻止穿透

作者: _嗯_哼_ | 来源:发表于2018-02-28 18:53 被阅读0次
image.png

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

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

js

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

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

相关文章

网友评论

      本文标题:小程序弹框阻止穿透

      本文链接:https://www.haomeiwen.com/subject/aipixftx.html