- 显示消息提示框
wx.showToast(OBJECT)
wx.showToast({
title: '加载中',
icon: 'loading',
duration: 10000
})
- 隐藏消息提示框
wx.hideToast()
setTimeout(function(){
wx.hideToast()
},2000)
- 显示模态弹窗
wx.showModal(OBJECT)
wx.showModal({
title: '提示' ,
content: '这是一个模态弹窗' ,
success: function (res) {
if (res.confirm) {
console.log( '用户点击确定' )
} else {
console.log( '用户点击取消' )
}
}
})
- 显示操作菜单
wx.showActionSheet(OBJECT)
wx.showActionSheet({
itemList: ['A', 'B', 'C'],
success: function(res) {
if (!res.cancel) {
console.log(res.tapIndex)
}
}
})
今天的文章微信小程序弹窗分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/6347.html