작은 프로그램 클릭 클래스 이름 추가

2608 단어 소절차

작은 프로그램 클릭 클래스 이름 추가

//  
      <block wx:for="{{arr}}" wx:key="index">
        <text bindtap="bindtext" data-index="{{index}}" class='{{isindex == index? "active" :" "}}'>{{item}}</text>
      </block>
//js
  bindtext:function(event){
    let index = event.target.dataset.index;
    console.log(event.target)
  this.setData({
    isindex:index
  })
  },

좋은 웹페이지 즐겨찾기