juqery 给本身的class加上一个class 或也可以实现关注商品,取消关注商品
$("#goods1").on("click",".ICON-fen-LOVE",function(){ var $this = $(this); var $id = $this.attr('data-guanzhu-id'); if($this.hasClass("active")){ console.log("111"); // 取关 $this.removeClass("active"); $.get("{:U('Chuli/no_guanzhu')}",{id:$id},function(v){ layer.msg(v.info); return false; }) }else{ // 关注 $this.addClass("active"); $.get("{:U('Chuli/guanzhu')}",{id:$id},function(v){ layer.msg(v.info); return false; }) } })