第一种判断
<c:if test=”${fn:length(item.creditorName)>’15’}”>${fn:substring(item.creditorName, 0, 15)}…</c:if>
第二种判断
<c:choose>
<c:when test=”${条件}”>
情况1:
</c:when>
<c:when test=”${条件}”>
情况2:
</c:when>
<c:otherwise>
否则。。。。。
</c:otherwise>
</c:choose>
例如:
<font color=<c:choose><c:when test="${fn:substring(tbSysOrderItem.grossprofit, 0, 1)=='-'}">#008000</c:when><c:otherwise>#FF0000</c:otherwise></c:choose>>${tbSysOrderItem.grossprofit}</font>
评论前必须登录!
注册