微信小程序之三:提示信息

Toast提示
 mask   Boolean     否   是否显示透明蒙层,防止触摸穿透,默认:false
 icon   String  否   图标,有效值 "success", "loading", "none"
 
 wx.showToast({
        title: '请输入提示语',
        icon: 'none',
        mask:true,
        duration: 2000
      }) 
加载的loading
  wx.showLoading({
      title: '正在加载',
      mask: true,
    })
   wx.hideLoading();
延迟执行
 setTimeout(function() {
   wx.hideLoading()
 }, 1000)
          
弹出窗口提示
wx.showModal({
    title: '我是弹窗标题',
    content: '佛系弹窗详情内容',
    success: function(res) {
      if (res.confirm) {
        console.log('用户点击确定')
      } else if (res.cancel) {
        console.log('用户点击取消')
      }
    }
  })   

你可能感兴趣的:(微信小程序之三:提示信息)