Thymeleaf——在不覆盖现有class属性的情况下动态添加CSS class解决方案
生活随笔
收集整理的這篇文章主要介紹了
Thymeleaf——在不覆盖现有class属性的情况下动态添加CSS class解决方案
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
問題描述
th:class動態添加CSS class會覆蓋現有class屬性,導致class較多時,表達式過長。
官方文檔
https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#appending-and-prepending
解決方案
th:classappend:用于在不覆蓋現有屬性的情況下向元素添加CSS class。?
<tr th:each="prod : ${prods}" class="row" th:classappend="${prodStat.odd}? 'odd'">擴展
參考文章
https://blog.csdn.net/weixin_44357646/article/details/100837365
總結
以上是生活随笔為你收集整理的Thymeleaf——在不覆盖现有class属性的情况下动态添加CSS class解决方案的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring Boot + Intell
- 下一篇: JAVA——Scanner类绑定Syst