当前位置: 代码迷 >> JavaScript >> jsp中JSTL运用
  详细解决方案

jsp中JSTL运用

热度:75   发布时间:2012-10-19 16:53:36.0
jsp中JSTL应用
截取字的长度

[/align][align=left] <td height="25" align="center">
<c:choose>
<c:when test="${fn:length(list.departName)>10}">
<font title="${list.departName }"><c:out value="${fn:substring(list.departName, 0, 10)}..." /></font>
</c:when>
<c:otherwise>
&nbsp;${list.departName}
</c:otherwise>
</c:choose>
</td>