使用jquery更改css类的content属性

时间:2014-07-01 06:27:11

标签: jquery html css

我有一个CSS

   .counter{
   span{display: none;}
   &:before{
   content: "Bookmark";
}
}



   <div class="counter fl" id="add_counter" ></div>

我想要一个JQuery代码,将CSS的内容属性从书签改为书签

1 个答案:

答案 0 :(得分:4)

您可以添加另一个内容设置为已添加书签的类:

$('.counter').addClass('bookmarked');

<强> CSS:

.bookmarked{
    content: "Bookmarked";
}

<强> Working Demo