美文网首页
微信小程序:点击收藏 class名称和文字都变化

微信小程序:点击收藏 class名称和文字都变化

作者: Litzy_b986 | 来源:发表于2019-10-16 18:55 被阅读0次

1,wxml代码

<text class="store-shou {{hidden ? 'shoucang1' : ''}}" bindtap="shoucangClick">{{hidden ? '已收藏' : '收藏'}}</text>

2,js代码

//点击收藏

  shoucangClick: function (e) {

    var hid = this.data.hidden;

    if (hid == true) {

      hid = false;

    }

    else {

      hid = true;

    }

    this.setData({

      hidden: hid // 改变状态

    })

  },

相关文章

网友评论

      本文标题:微信小程序:点击收藏 class名称和文字都变化

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