$("#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; }) } })