如何使用aurelia.js在DOM中插入css类?
如果我的<th>
有class="aut-asc"
或class="aut-asc"
,我想添加一个名为global
的额外课程
点击后添加了aut-asc,很好,但事情是我需要有这个类的人有红色背景。
现在背景就在箭头中。
.aut-desc:before{
content: $fa-var-sort;
background-color: red;
}
如果不做任何事情。
<thead>
<tr>
<th class="aut-asc">
Sort
</th>
</tr>
</thead>
答案 0 :(得分:3)
您可以使用字符串插值切换在变量中添加和删除css类:
<th class="aut-asc ${toggleVariable ? 'global' : ''}">