在jstl:foreach标签中设置显示字数

下面是部分jsp代码:

<c:forEach items="${list5}" var="news" >
    <li class="clr"><span class="fl">·<a href="<%=basePath%>service/web/news/preView1/${news.newsId}">
    <c:if test="${fn:length(news.title)>15}">
        ${fn:substring(news.title, 0, 15)}...
    </c:if>
    <c:if test="${fn:length(news.title)<=15}">
        ${news.title}
    </c:if>
    </a></li>
</c:forEach>

用到了jstl标签中的C:foreach 和 fn标签

你可能感兴趣的:(在jstl:foreach标签中设置显示字数)