這篇文章主要介紹了微信小程式實作action-sheet彈出底部選單功能,結合實例形式分析了action-sheet元件彈出選單的使用技巧,包括元素遍歷、事件回應及屬性設定等操作方法,並附帶原始碼供讀者下載參考,需要的朋友可以參考下方
本文實例講述了微信小程式實作action-sheet彈出底部選單功能。分享給大家供大家參考,具體如下:
關鍵代碼
① index.wxml
<button type="default" bindtap="actionSheetTap">弹出action sheet</button> <action-sheet hidden="{{actionSheetHidden}}" bindchange="actionSheetbindchange"> <block wx:for-items="{{actionSheetItems}}" wx:key="{{txt}}"> <action-sheet-item bindtap="bind{{item.bindtap}}">{{item.txt}}</action-sheet-item> </block> <action-sheet-cancel class="cancel">取消</action-sheet-cancel> </action-sheet> <view> 提示:您选择了菜单{{menu}} </view>
② index.js
Page({ data:{ // text:"这是一个页面" actionSheetHidden:true, actionSheetItems:[ {bindtap:'Menu1',txt:'菜单1'}, {bindtap:'Menu2',txt:'菜单2'}, {bindtap:'Menu3',txt:'菜单3'} ], menu:'' }, actionSheetTap:function(){ this.setData({ actionSheetHidden:!this.data.actionSheetHidden }) }, actionSheetbindchange:function(){ this.setData({ actionSheetHidden:!this.data.actionSheetHidden }) }, bindMenu1:function(){ this.setData({ menu:1, actionSheetHidden:!this.data.actionSheetHidden }) }, bindMenu2:function(){ this.setData({ menu:2, actionSheetHidden:!this.data.actionSheetHidden }) }, bindMenu3:function(){ this.setData({ menu:3, actionSheetHidden:!this.data.actionSheetHidden }) } })
上面是我整理給大家的,希望未來會對大家有幫助。
相關文章:
以上是在微信小程式中如何實現彈出底部選單的詳細內容。更多資訊請關注PHP中文網其他相關文章!