小程序弹窗分类
Posted Chanhxy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序弹窗分类相关的知识,希望对你有一定的参考价值。
第一种:无按钮 提示类型
wx.showToast({
title: ‘去结算‘,
icon: ‘success‘,
duration: 2000,
success: function () {
setTimeout(function () {
wx.navigateTo({
url: ‘../order-detail/order-detail‘,
})
}, 1000)
}
});
第二种:有按钮
wx.showModal({
title: ‘提示‘,
content: ‘确定要删除吗?‘,
success: function (res) {
if (res.confirm) {
that.confirmDelete(e);
} else if (res.cancel) {
console.log(‘用户点击取消‘)
}
}
})
备注:此时 this不指向page下的环境,需要在函数开始 var that =this;
以上是关于小程序弹窗分类的主要内容,如果未能解决你的问题,请参考以下文章