1. 程式人生 > >微信小程式筆記(一)——點選顯示或隱藏某一行資料

微信小程式筆記(一)——點選顯示或隱藏某一行資料

data: { list:[ { 'id': 0, 'hidden': true }, { 'id': 1, 'hidden': true }, { 'id': 2, 'hidden': true }, ], listCon: [ { 'id': 0, 'hidden': true }, { 'id': 1, 'hidden': true }, { 'id': 2, 'hidden': true }, ] }, // 方法一 hiddenBtn:function(e){ var that = this; // 獲取事件繫結的當前元件 var index = e.currentTarget.dataset.index; // 獲取list中hidden的值
// 隱藏或顯示內容 that.data.list[index].hidden = !that.data.list[index].hidden; that.setData({ list: that.data.list }) }, // 方法二 hiddenBtnCon:function(e){ var that = this; var index = e.currentTarget.dataset.index; that.data.listCon[index].hidden = !that.data.listCon[index].hidden; that.setData({ listCon: that.data.listCon }) },