小程序模板網(wǎng)

微信小程序之彈框提示信息

發(fā)布時間:2021-06-23 14:45 所屬欄目:小程序開發(fā)教程
一、模態(tài)窗口
wx.showModal

 delete(){
    wx.showModal({
      title: '',
      content: '是否確認(rèn)刪除',
      success(res) {
        if (res.confirm) {
          console.log('用戶點(diǎn)擊確定')
        } else if (res.cancel) {
          console.log('用戶點(diǎn)擊取消')
        }
      }
    })
  }

二、提示你想提示的信息

提示你想提示的信息

wx.showToast({
  title: '成功',
  icon: 'success',
  duration: 2000
})

注意
wx.showLoading 和 wx.showToast 同時只能顯示一個
wx.showToast 應(yīng)與 wx.hideToast 配對使用

三、顯示 loading 提示框

wx.showLoading

wx.showLoading({
  title: '加載中',
})

setTimeout(function () {
  wx.hideLoading()
}, 2000)
四、 wx.showActionSheet(OBJECT)
wx.showActionSheet({
  itemList: ['A', 'B', 'C'],
  success: function(res) {
    console.log(res.tapIndex)
  },
  fail: function(res) {
    console.log(res.errMsg)
  }


易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開源 碼云倉庫:starfork
本文地址:http://22321a.com/wxmini/doc/course/26707.html 復(fù)制鏈接 如需定制請聯(lián)系易優(yōu)客服咨詢:800182392 點(diǎn)擊咨詢
QQ在線咨詢