js中使用innerHTML中拼接程序,使用<c:if>标签的问题???

js中使用innerHTML中拼接程序,使用<c:if>标签的问题???,第1张

c:if是在界面生成的时候进行编译,那会哪来的js变量呢,最好改成用js来拼接

<c:if test='${"+eval(deptno)+"==dept.DEPTNO }'>selected</c:if>

可以写成: deptno ==' ${dept.DEPTNO}'?'selected':''

在html中显示长度较大的数据处理方法

在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

分页导航里面添加id或者class

假设分页导航的id=page-nav

在js里面调用。

document.getElementById("page-nav").style.display="none"


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6163524.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-16
下一篇 2023-03-16

发表评论

登录后才能评论

评论列表(0条)

保存