当字数(如:标题字数)过多时用...代替
1.首先需要引入如下标签
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
2.实现:
<c:if test='${fn:length(x.title)>18}'>${fn:substring(x.title,0,18)}...</c:if><c:if test='${fn:length(x.title)<=18}'>${x.title}</c:if>
说明:x表示一个对象。18表示title显示的最大长度,注意:要按照汉字来算,unicode编码字符和汉字都是占用两个字节,而汉字的显示要比字符宽。