Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下课程:
#categories_btn:after { content: "+"; }
我正在尝试使用 jquery 来切换此类以显示 + 或 - 。做这个的最好方式是什么?
$('#categories_btn a').click(function(){ $('aside#left_col #categories').toggle(); });
添加具有不同:after内容的类:
:after
#categories_btn.alt:after { content: "-"; }
然后使用 . 在所需元素上切换此类toggleClass('alt')。
toggleClass('alt')