码迷,mamicode.com
首页 > 其他好文 > 详细

thymeleaf条件表达式

时间:2014-10-16 21:00:13      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   使用   strong   sp   div   on   

条件表达式形式:condition, then and else

<tr th:class="${row.even}? ‘even‘ : ‘odd‘">
  ...
</tr>

混合使用表达式实例:

<tr th:class="${row.even}? (${row.first}? ‘first‘ : ‘even‘) : ‘odd‘">
  ...
</tr>

 

其他表达式也可以省略,在这种情况下,返回一个null值如果条件是错误的

<tr th:class="${row.even}? ‘alt‘">
  ...
</tr>

 

thymeleaf条件表达式

标签:style   blog   color   io   使用   strong   sp   div   on   

原文地址:http://www.cnblogs.com/suncj/p/4029388.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!