gpt4 book ai didi

javascript - Aurelia.js 中的 if 和 else

转载 作者:行者123 更新时间:2023-11-29 19:03:31 25 4
gpt4 key购买 nike

如何使用 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>

最佳答案

您可以使用字符串插值在变量中添加和删除 css 类:

 <th class="aut-asc ${toggleVariable ? 'global' : ''}">

关于javascript - Aurelia.js 中的 if 和 else,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44827947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com