微信小程序-弹窗组件

时间:2021-01-11 10:31:04   收藏:0   阅读:0

自定义弹窗组件:https://www.cnblogs.com/Post-90sDachenchen/p/13636668.html#4795824

参考2:https://www.jianshu.com/p/4a2e8ca47ded

微信小程序自带弹窗组件 wx.showModal

js示例:
popConfirm: function(){
  wx.showModal({
    title: ‘confirm的弹窗‘,
    content: ‘确认要删除该项吗?‘,
    showCancel: true,
    success: function (res) {
      if (res.confirm) { 
      console.log(‘点击确认回调‘)
      } else { 
      console.log(‘点击取消回调‘)
      }
    }
  })
}
showCancel 为false 时不显示取消按钮
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!