第一步:页面引入标签
<%@ taglib prefix=”fn” uri=”http://java.sun.com/jsp/jstl/functions” %>
第二步:使用c:choose标签
<c:choose>
<c:when test="${fn:length(p.group.name)<=9}">
${p.group.name}
</c:when>
<c:otherwise>
${fn:substring(p.group.name,0,9)}...
</c:otherwise>
</c:choose>
第三步:链接给予提示
<a href="${ctx}/aa.do?mode=detail&id=${p.group.id}" target="_blank" id="groupList" title="${p.group.name}">文字标题</a>