小編給大家分享一下如何使用微信小程序開發(fā)彈出框,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
目前創(chuàng)新互聯(lián)已為上千余家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、綿陽(yáng)服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、萬(wàn)柏林網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。view class="container" class="zn-uploadimg"> <button type="primary"bindtap="showok">消息提示框</button> <button type="primary"bindtap="modalcnt">模態(tài)彈窗</button> <button type="primary"bindtap="actioncnt">操作菜單</button> </view>
1.消息提示——wx.showToast(OBJECT)
//show.js //獲取應(yīng)用實(shí)例 var app = getApp() Page({ showok:function() { wx.showToast({ title: '成功', icon: 'success', duration: 2000 }) } })
2.模態(tài)彈窗——wx.showModal(OBJECT)
//show.js //獲取應(yīng)用實(shí)例 var app = getApp() Page({ showok:function() { wx.showToast({ title: '成功', icon: 'success', duration: 2000 }) } })
//show.js //獲取應(yīng)用實(shí)例 var app = getApp() Page({ modalcnt:function(){ wx.showModal({ title: '提示', content: '這是一個(gè)模態(tài)彈窗', success: function(res) { if (res.confirm) { console.log('用戶點(diǎn)擊確定') } else if (res.cancel) { console.log('用戶點(diǎn)擊取消') } } }) } })
3.操作菜單——wx.showActionSheet(OBJECT)
//show.js //獲取應(yīng)用實(shí)例 var app = getApp() Page({ actioncnt:function(){ wx.showActionSheet({ itemList: ['A', 'B', 'C'], success: function(res) { console.log(res.tapIndex) }, fail: function(res) { console.log(res.errMsg) } }) } })
4.指定modal彈出
指定哪個(gè)modal,可以通過(guò)hidden屬性來(lái)進(jìn)行選擇。
<!--show.wxml--> <view class="container" class="zn-uploadimg"> <button type="primary"bindtap="modalinput"> modal有輸入框 </button> </view> <modal hidden="{{hiddenmodalput}}" title="請(qǐng)輸入驗(yàn)證碼" confirm-text="提交" cancel-text="重置" bindcancel="cancel" bindconfirm="confirm"> <input type='text'placeholder="請(qǐng)輸入內(nèi)容" auto-focus/> </modal>
//show.js //獲取應(yīng)用實(shí)例 var app = getApp() Page({ data:{ hiddenmodalput:true, //可以通過(guò)hidden是否掩藏彈出框的屬性,來(lái)指定那個(gè)彈出框 }, //點(diǎn)擊按鈕痰喘指定的hiddenmodalput彈出框 modalinput:function(){ this.setData({ hiddenmodalput: !this.data.hiddenmodalput }) }, //取消按鈕 cancel: function(){ this.setData({ hiddenmodalput: true }); }, //確認(rèn) confirm: function(){ this.setData({ hiddenmodalput: true }) } })
以上是“如何使用微信小程序開發(fā)彈出框”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站欄目:如何使用微信小程序開發(fā)彈出框-創(chuàng)新互聯(lián)
本文地址:http://m.rwnh.cn/article2/ddsooc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、全網(wǎng)營(yíng)銷推廣、定制網(wǎng)站、App開發(fā)、App設(shè)計(jì)、網(wǎng)站維護(hù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容
移動(dòng)網(wǎng)站建設(shè)知識(shí)