在html中显示长度较大的数据时,可以将数据截取显示,当鼠标滑过时再显示完整数据。
例如,下面这种情况。
实现:
<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></p
哈哈,我觉得楼主是在问怎么选定指定的li也就是jq的选择器问题?
------------
:eq() 选择器选取带有指定 index 值的元素
$("p:eq(1)")‘这是第二个<p></p>
$("ul li:eq(3)")’ul中的第四个li(index 从 0 开始)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)