jsp 页面上图片分行输出小技巧
更新时间:2009年04月24日 01:33:02 作者:
有时候需要图片分行显示,下面是比较不错的代码。
<table border="0" cellpadding="2">
<c:forEach items="${pics}" var="pic" varStatus="status">
<c:if test="${((status.index)%3)==0}"><tr></c:if>
<td>
<input class='Input-0-border' name="bk_no" type="radio" value="${pic.piccode}"
<c:if test="${status.index==0}">checked</c:if>
onClick='changeVal(this.value)'/>
<c:if test="${not empty(pic.logoPath)}"><img src="${pic.logoPath}"></c:if>
<c:if test="${empty(pic.logoPath)}"><c:out value="${pic.picname}"/></c:if>
<input type="hidden" name="bk_name" value="<c:out value="${pic.picname}"/>">
</td>
<c:if test="${((status.index+1)%3)==0}"></tr></c:if>
</c:forEach>
</table>
<c:forEach items="${pics}" var="pic" varStatus="status">
<c:if test="${((status.index)%3)==0}"><tr></c:if>
<td>
<input class='Input-0-border' name="bk_no" type="radio" value="${pic.piccode}"
<c:if test="${status.index==0}">checked</c:if>
onClick='changeVal(this.value)'/>
<c:if test="${not empty(pic.logoPath)}"><img src="${pic.logoPath}"></c:if>
<c:if test="${empty(pic.logoPath)}"><c:out value="${pic.picname}"/></c:if>
<input type="hidden" name="bk_name" value="<c:out value="${pic.picname}"/>">
</td>
<c:if test="${((status.index+1)%3)==0}"></tr></c:if>
</c:forEach>
</table>
相关文章
jsp提交到Servlet报404错误问题解决(webroot下子目录)
第一次用jsp写东西,在webroot子文件夹下写jsp,当提交到Servlet时报404错误,下面是具体的解决方法,有类似问题的朋友可以参考下哈2013-06-06
JSP中内建exception对象时出现500错误的解决方法
这篇文章主要介绍了JSP中内建exception对象时出现500错误的解决方法,以一个简单实例形式分析了exception对象出现500错误的解决方法,涉及浏览器及error文件的设置技巧,具有一定参考借鉴价值,需要的朋友可以参考下2015-11-11


最新评论