微信小程序彈框功能代碼實現(xiàn)
1.提示框:wx.showToast
實例:
wx:showToast({
title:'馬上開始'
})
2.顯示加載: wx.showloading 關(guān)閉提示:wx.hidelading 兩個需配合使用
實例:
wx:showloading({
title:'正在加載'
})
setDoun(function(){
wx.hidelading()
2000},)
3.模態(tài)彈框: wx.showModal
wx.showModal({
title: '提示',
confirmText: '去設(shè)置',
cancelText: '取消',
content: '點擊去設(shè)置',
success: function (res) {
if (res.confirm) {
wx.navigateTo({
url: '/index/intercalate'
})
} else if (res.cancel) {
return;
}
}
})
}
附:還可WXML自己寫彈框