Thymeleaf:如何使用条件条件动态添加/删除CSS类

通过使用

作为模板引擎,是否可以在div带有th:if子句的简单对象中动态添加CSS类/从中删除CSS类?

通常,我可以按如下方式使用条件子句:

<a href="lorem-ipsum.html" th:if="${condition}">Lorem Ipsum</a>

我们将创建到 lorem ipsum 页面的链接,但 前提 是条件子句为true。

我正在寻找不同的东西:我希望该块始终可见,但根据情况使用可更改的类。

回答:

也有th:classappend

<a href="" class="baseclass" th:classappend="${isAdmin} ? adminclass : userclass"></a>

如果isAdmintrue,则将导致:

<a href="" class="baseclass adminclass"></a>

以上是 Thymeleaf:如何使用条件条件动态添加/删除CSS类 的全部内容, 来源链接: utcz.com/qa/423750.html

回到顶部