這篇文章主要介紹了微信小程式 action-sheet詳解及實例程式碼的相關資料,需要的朋友可以參考下
微信小程式 action-sheet
說明 | hidden | ||
---|---|---|---|
是否隱藏 | 或點擊 | sheet-cancel按鈕時觸發change事件,不攜帶數據||
action-sheet-item | 底部選單表的子選項。 |
底部選單表的取消按鈕,和action-sheet-item的區別是,點擊它會觸發action-sheet的change事件,並且外觀上會同它上面的內容間隔開來。
範例程式碼:<button type="default" bindtap="actionSheetTap">弹出action sheet</button> <action-sheet hidden="{{actionSheetHidden}}" bindchange="actionSheetChange"> <block wx:for-items="{{actionSheetItems}}"> <action-sheet-item class="item" bindtap="bind{{item}}">{{item}}</action-sheet-item> </block> <action-sheet-cancel class="cancel">取消</action-sheet-cancel> </action-sheet>
var items = ['item1', 'item2', 'item3', 'item4'] var pageObject = { data: { actionSheetHidden: true, actionSheetItems: items }, actionSheetTap: function(e) { this.setData({ actionSheetHidden: !this.data.actionSheetHidden }) }, actionSheetChange: function(e) { this.setData({ actionSheetHidden: !this.data.actionSheetHidden }) } } for (var i = 0; i < items.length; ++i) { (function(itemName) { pageObject['bind' + itemName] = function(e) { console.log('click' + itemName, e) } })(items[i]) } Page(pageObject) action-sheet
感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!
更多微信小程式 action-sheet詳解及實例程式碼相關文章請關注PHP中文網!