欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序之幾種常見(jiàn)的彈框提示信息實(shí)現(xiàn)詳解

 更新時(shí)間:2019年07月11日 11:35:01   作者:Jessie_xian  
這篇文章主要介紹了微信小程序之幾種常見(jiàn)的彈框提示信息實(shí)現(xiàn)詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

一、模態(tài)窗口

 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
})

注意

三、顯示 loading 提示框

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)
 }
})

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論