首页 >php教程 >PHP开发 >jsp 页面上图片分行输出小技巧

jsp 页面上图片分行输出小技巧

高洛峰
高洛峰原创
2016-12-29 15:44:001245浏览

<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=&#39;Input-0-border&#39; name="bk_no" type="radio" value="${pic.piccode}" 
<c:if test="${status.index==0}">checked</c:if> 
onClick=&#39;changeVal(this.value)&#39;/> 
<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 页面上图片分行输出小技巧相关文章请关注PHP中文网!


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn