码迷,mamicode.com
首页 > 其他好文 > 详细

el 表达式中某一项过长时需要截取字符串长度,当悬停的时候显示全部内容

时间:2017-12-27 17:57:31      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:.com   jsp   姓名   stl   pac   rip   test   java   col   

首先需要引入红色的标签

 

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
         
<table border="1" cellpadding="0" cellspacing="0" width="85%">
        <tr>
            <td>客户姓名</td>
            <td>性别</td>
            <td>生日</td>
            <td>手机</td>
            <td>邮箱</td>
            <td>爱好</td>
            <td>类型</td>
            <td>备注</td>
            <td>操作</td>
        <tr>
        <c:forEach var="c" items="${requestScope.list }">
            <tr>
                <td>${c.name }</td>
                <td>${c.gender }</td>
                <td>${c.birthday }</td>
                <td>${c.cellphone }</td>
                <td>${c.email }</td>
                <td>${c.preference }</td>
                <td>${c.type }</td>
                <td title="${c.description}" >     //当鼠标悬停时显示其全部内容  a标签也有title这个属性
                   <c:if test="${fn:length(c.description)>12 }">
                         ${fn:substring(c.description, 0, 12)}...
                   </c:if>
                  <c:if test="${fn:length(c.description)<=12 }">
                         ${c.description }
                   </c:if>
                </td>
                <td>
                    <a href="#">修改</a>
                    <a href="#">刪除</a>
                </td>
            </tr>
        </c:forEach>
     </table>

el 表达式中某一项过长时需要截取字符串长度,当悬停的时候显示全部内容

标签:.com   jsp   姓名   stl   pac   rip   test   java   col   

原文地址:https://www.cnblogs.com/libo199374/p/8125725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!