jsp中三目运算的两种表现形式

  • Post author:
  • Post category:其他


1、用标签<c>

<td class=”text-center”>

<c:choose>

<c:when test=”${map2[‘confirmResult’] == ‘0000’ || map2[‘confirmResult’] == ‘成功’}”> 确认成功</c:when>

<c:otherwise>${map2[‘confirmResult’]}</c:otherwise>

</c:choose>

</td>

2、用三目运算符

<td class=”text-center”> {map2[‘confirmResult’] == ‘0000’?’确认成功’:map2[‘confirmResult’]  ||  map2[‘confirmResult’] == ‘0000’?’成功’:map2[‘confirmResult’]}

</td>



版权声明:本文为weixin_41377877原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。