小程序弹窗的几种形式


以下是小程序中常用的集中弹窗形式:
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