Home  >  Article  >  php教程  >  Tips for outputting pictures in separate rows on jsp pages

Tips for outputting pictures in separate rows on jsp pages

高洛峰
高洛峰Original
2016-12-29 15:44:001226browse

<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>


For more tips on outputting pictures in separate rows on jsp pages, please pay attention to the PHP Chinese website for related articles!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn