Home > php教程 > PHP开发 > body text

Tips for outputting pictures in separate rows on jsp pages

高洛峰
Release: 2016-12-29 15:44:00
Original
1228 people have browsed it

<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>
Copy after login


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


Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template