微信小程序弹窗(提示框和确认框)

目录

  • 提示框
    • 关键属性
    • 代码实现
  • 确认框
    • 代码实现

提示框

在这里插入图片描述
wx.showToast:微信小程序官方文档

关键属性

微信小程序弹窗(提示框和确认框)_第1张图片

代码实现

 
butt(){
	wx.showToast({
      title: '保存成功',
      icon: 'none',
      duration: 1500,
      success: function () {
       //弹窗后执行,可以省略
	   setTimeout(function () {
	      wx.reLaunch({
	       url: '../index/index',
	          })
	        }, 1500);
        }
      })
}
        

确认框

微信小程序弹窗(提示框和确认框)_第2张图片
wx.showModal:微信小程序官方文档

代码实现


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

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