码迷,mamicode.com
首页 > 微信 > 详细

小程序弹窗的几种形式

时间:2019-08-31 11:11:12      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:title   tle   api   conf   pre   lse   hid   ati   UNC   

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

小程序弹窗的几种形式

标签:title   tle   api   conf   pre   lse   hid   ati   UNC   

原文地址:https://www.cnblogs.com/lvxisha/p/11438089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!