在html中顯示長(zhǎng)度較大的數(shù)據(jù)時(shí),可以將數(shù)據(jù)截取顯示,當(dāng)鼠標(biāo)滑過(guò)時(shí)再顯示完整數(shù)據(jù)。
例如,下面這種情況。
實(shí)現(xiàn):
代碼如下:
<a title="${siteBoardInfoList.boardUrl}">
<c:if test="${fn:length(siteBoardInfoList.boardUrl) >= 40}">
${fn:substring(siteBoardInfoList.boardUrl,0,20)}......${fn:substring(siteBoardInfoList.boardUrl,fn:length(siteBoardInfoList.boardUrl)-21,fn:length(siteBoardInfoList.boardUrl))}
</c:if>
<c:if test="${fn:length(siteBoardInfoList.boardUrl) < 40}">
${siteBoardInfoList.boardUrl}
</c:if>
</a>
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄