微信小程序提示框-微信小程序搜索框
发布时间:2023-02-10 11:13 浏览次数:次 作者:佚名
本文主要介绍微信小程序中几种常见弹窗提示的实现详解微信小程序提示框。 示例代码在文章中介绍的很详细。对大家的学习或者工作都有一定的参考学习价值微信小程序提示框。 需要的朋友可以参考以下
1.模态窗口
delete(){ wx.showModal({ title: '', content: '是否确认删除', success(res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } }) }
2.提示你要提示的信息
提示你要提示的信息
wx.showToast({ title: '成功', icon: 'success', duration: 2000 })
注意
3.显示加载提示框
wx.showLoading({ title: '加载中', }) setTimeout(function () { wx.hideLoading() }, 2000)
4.wx.showActionSheet(对象)
wx.showActionSheet({ itemList: ['A', 'B', 'C'], success: function(res) { console.log(res.tapIndex) }, fail: function(res) { console.log(res.errMsg) } })