1. 程式人生 > >html td標籤 限制字元長度

html td標籤 限制字元長度

<td align="center"   title="${entity.newsTitle }"  style="max-width: 100px;overflow: hidden; text-overflow:ellipsis;white-space: nowrap"> 

      ${entity.newsTitle }

</td>

title標籤體是 滑鼠在td標籤上顯示 文字內容

style具體的就是設定最大的寬度,多餘的隱藏,多餘的會以“......”

demo2:效果和上面差不多 只是不再侷限於td標籤中使用了

使用jstl標籤
<c:choose>
    <c:when test="${!empty entity.bannerText && fn:length(entity.bannerText)> 10}">${fn:substring(entity.bannerText, 0, 10)}...</c:when>
    <c:otherwise>${entity.bannerText}</c:otherwise>
</c:choose>