這篇文章主要介紹如何使用小程序里的模態(tài)框?qū)崿F(xiàn)刪除,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
堅(jiān)守“ 做人真誠 · 做事靠譜 · 口碑至上 · 高效敬業(yè) ”的價(jià)值觀,專業(yè)網(wǎng)站建設(shè)服務(wù)10余年為成都成都發(fā)電機(jī)維修小微創(chuàng)業(yè)公司專業(yè)提供成都定制網(wǎng)頁設(shè)計(jì)營銷網(wǎng)站建設(shè)商城網(wǎng)站建設(shè)手機(jī)網(wǎng)站建設(shè)小程序網(wǎng)站建設(shè)網(wǎng)站改版,從內(nèi)容策劃、視覺設(shè)計(jì)、底層架構(gòu)、網(wǎng)頁布局、功能開發(fā)迭代于一體的高端網(wǎng)站建設(shè)服務(wù)。
使用小程序里的模態(tài)框?qū)崿F(xiàn)刪除,具體內(nèi)容如下:
沒有 confrim 那怎么實(shí)現(xiàn)這個(gè)效果呢?
可以使用小程序里的模態(tài)框
代碼:
wxml:
刪除
js:
del:function(e){ var that = this; wx.showModal({ title: '提示', content: '確定要?jiǎng)h除嗎?', success: function (sm) { if (sm.confirm) { // 用戶點(diǎn)擊了確定 可以調(diào)用刪除方法了 wx.request({ url: 'https://m.*****.com/index.php/Home/Xiaoxxf/home_comment_del?c_id=' + e.currentTarget.dataset.cid, //刪除房間評(píng)論 data: '', header: { 'Content-Type': 'application/json' }, method: 'GET', success: function (res) { console.log(res); wx.showToast({ title: res.data, //數(shù)據(jù)返回提示,查看后臺(tái)PHP icon: 'success', duration: 2000 }) /* 獲取房間評(píng)論信息 -xzz 0714*/ getList(that); }, fail: function (res) { }, complete: function (res) { }, }) } else if (sm.cancel) { } } }) }
效果:
這樣就實(shí)現(xiàn)js的confirm效果了。
以上是“如何使用小程序里的模態(tài)框?qū)崿F(xiàn)刪除”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!