欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jsp 頁面上圖片分行輸出小技巧

 更新時(shí)間:2009年04月24日 01:33:02   作者:  
有時(shí)候需要圖片分行顯示,下面是比較不錯(cuò)的代碼。
<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>

相關(guān)文章

  • jsp實(shí)現(xiàn)生成中國國旗圖片效果代碼

    jsp實(shí)現(xiàn)生成中國國旗圖片效果代碼

    這篇文章主要介紹了jsp實(shí)現(xiàn)生成中國國旗圖片效果代碼,涉及JSP圖形繪制及數(shù)學(xué)運(yùn)算的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-10-10
  • 最新評(píng)論