大家好,又见面了,我是你们的朋友全栈君。
1、纯文本提示
wx.showToast({
title: '纯文字弹窗',
icon: 'none', //如果要纯文本,不要icon,将值设为'none'
duration: 2000
})
2、取消确认提示
wx.showModal({
title: 'confirm的弹窗',
content: '确认要删除该项吗?',
success: function (res) {
if (res.confirm) {
console.log('点击确认回调')
} else {
console.log('点击取消回调')
}
}
})
3、成功提示
wx.showToast({
title: '成功提示弹窗',
icon: '', //默认值是success,就算没有icon这个值,就算有其他值最终也显示success
duration: 2000, //停留时间
})
4、自定义图标弹窗
wx.showToast({
title: '自定义图标弹窗',
image: '../../static/image/icon.png', //image的优先级会高于icon
duration: 2000
})
5、加载中提示
wx.showLoading({
title:'加载中...'
});
6、带蒙层的弹窗
wx.showToast({
title: '带蒙层的弹窗',
duration: 2000,
mask:true //是否有透明蒙层,默认为false
//如果有透明蒙层,弹窗的期间不能点击文档内容
})
7、有列表弹窗
wx.showActionSheet({
itemList: ['A', 'B', 'C'],
success: function (res) {
console.log(res);
}
})
隐藏 wx.hideToast()
wx.hideLoading()
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/125413.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...