微信小程序|【微信小程序】之弹框modal

官方文档
微信小程序|【微信小程序】之弹框modal
文章图片


微信小程序|【微信小程序】之弹框modal
文章图片


微信小程序|【微信小程序】之弹框modal
文章图片

---------------------------------------------------------------------------------------------------- 微信小程序|【微信小程序】之弹框modal
文章图片

微信小程序|【微信小程序】之弹框modal
文章图片

wx.showModal({ title: '提示', content: '这是一个模态弹窗', success(res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } })

微信小程序|【微信小程序】之弹框modal
文章图片

wx.showModal({ title: '提示', content: '您确定退出编辑吗?退出无法保存编辑内容!', showCancel: false, cancelText: '取消', confirmText: '确认', success: function (res) { // 用户没有保存 if (res.confirm) {} else if (res.cancel) { // 用户点击了取消 } } })

微信小程序|【微信小程序】之弹框modal
文章图片

微信小程序|【微信小程序】之弹框modal
文章图片

【微信小程序|【微信小程序】之弹框modal】供参考!

    推荐阅读