美文网首页
微信小程序实例规格选取

微信小程序实例规格选取

作者: 加冰宝贝 | 来源:发表于2018-11-14 14:32 被阅读9次

html

   <view class="tong-items  {{items2==0 ? "tong-item2":""}}" data-items2="0"  bindtap="ClickTap">钢琴</view>
   <view class="tong-items  {{items2==1 ? "tong-item2":""}}" data-items2="1"  bindtap="ClickTap">钢</view>

js

   data:{
      items2: undefined// 控制分类的样式 
   }
   //点击事件
  ClickTap :function(e){
             var tempObj = e.currentTarget.dataset;
              var items = tempObj.items2;
              this.setData({
                   items: items
               });
         },

相关文章

网友评论

      本文标题:微信小程序实例规格选取

      本文链接:https://www.haomeiwen.com/subject/ssqjfqtx.html