小程序彈窗的幾種形式


以下是小程序中常用的集中彈窗形式:
1.類似layer.confirm('111',function(){})效果
wx.showModal({
      title: '',
      content: '暫無分析數據',
      showCancel: false
    });
}

2.類似layer.msg效果
wx.showToast({
     title: '登錄成功',
     icon: 'success',
     duration: 1000
})

3.loading顯示框:showLoading與hideLoading配對使用
wx.showLoading({
  title: '加載中。。。',
})
4.隱藏顯示的loading
setTimeout(function () {
  wx.hideLoading()
}, 2000)

更多用法與屬性參考微信小程序API


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM