国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

WeChat applet development documentation / wxapp操作反饋模式對話框 modal

wxapp操作反饋模式對話框 modal

注意:

modal即將廢棄,請使用 API wx.showModal



對話彈窗

QQ截圖20170208103520.png

示例:

<modal title="標題" confirm-text="confirm" cancel-text="cancel" hidden="{{modalHidden}}" bindconfirm="modalChange" bindcancel="modalChange">
    這是對話框的內(nèi)容。
</modal>

<modal class="modal" hidden="{{modalHidden2}}" no-cancel bindconfirm="modalChange2">
    <view> 沒有標題沒有蒙層沒有確定的modal </view>
    <view> 內(nèi)容可以插入節(jié)點 </view>
</modal>

<view class="btn-area">
    <button type="default" bindtap="modalTap">點擊彈出modal</button>
    <button type="default" bindtap="modalTap2">點擊彈出modal2</button>
</view>
Page({
  data: {
    modalHidden: true,
    modalHidden2: true
  },
  modalTap: function(e) {
    this.setData({
      modalHidden: false
    })
  },
  modalChange: function(e) {
    this.setData({
      modalHidden: true
    })
  },
  modalTap2: function(e) {
    this.setData({
      modalHidden2: false
    })
  },
  modalChange2: function(e) {
    this.setData({
      modalHidden2: true
    })
  },
})

201609241545352103.png




注意:

modal即將廢棄,請使用 API wx.showModal