この記事では、アクションシートのポップアップボトムメニュー機能を実装するためのWeChatアプレットを主に紹介し、要素トラバーサル、イベント応答、属性などのアクションシートコンポーネントのポップアップメニューの使用スキルを例の形で分析します。設定やその他の操作方法、ソースコードが付属しています。読者のダウンロードの参考として、必要な友人が参照できます
この記事では、アクションシートのポップアップボトムメニュー機能を実装したWeChatアプレットの例について説明します。ご参考までに、皆さんと共有してください:
キーコード
①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 }) } })
上記は皆さんのためにまとめたものです。将来。
関連記事:
Vueプロジェクトを最適化するときに注意すべきことは何ですか?
以上がWeChatミニプログラムで下部メニューをポップアップ表示する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。