<c:if test="${not empty feeType}">  注意:大括号外面不能为空。

  ${orderNo.ethdOriginalOrderNo}
</c:if>

<c:if test="${empty str}">  str为空</c:if>

<c:if test="${not empty str}">  str不为空</c:if>

判断是否相等

<c:if test="${list.lawModel.sendStyle=='3'}"> 
<td align="center" valign="top" class="boder5">群发 </td> 
</c:if>

或者

<c:if test="${list.lawModel.sendStyle eq '3'}"> 
<td align="center" valign="top" class="boder5">群发 </td> 
</c:if>

  ${orderNo.ethdOriginalOrderNo}
</c:if>

<c:if test="${empty str}">  str为空</c:if>

<c:if test="${not empty str}">  str不为空</c:if>

判断是否相等

<c:if test="${list.lawModel.sendStyle=='3'}"> 
<td align="center" valign="top" class="boder5">群发 </td> 
</c:if>

或者

<c:if test="${list.lawModel.sendStyle eq '3'}"> 
<td align="center" valign="top" class="boder5">群发 </td> 
</c:if>

相关文章:

  • 2022-12-23
  • 2021-11-03
  • 2021-11-21
  • 2021-12-04
  • 2021-11-27
  • 2021-11-28
  • 2021-11-28
猜你喜欢
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2021-09-03
  • 2021-09-11
相关资源
相似解决方案