<table border="0" cellpadding="2" cellspacing="0"
width="100%">
<tbody>
<c:set value="0" var="i" />
<c:forEach var="ud" items="${usuallyDisease}">
<c:set value="${i+1}" var="i"></c:set>
<c:if test="${i%4==1}">
<tr>
</c:if>
<td width="20%">i:<c:out value="${i}"/>
i/4:<c:out value="${i%4}"/>
<input name="illness[]" id="illness[]" value="${ud.id}"
type="checkbox">
<c:out value="${ud.diseaseName}" />
</td>
<c:if test="${i/4==0 || i==usuallyDiseaseSize}">
</tr>
</c:if>
</c:forEach>
<tr>
<td width="25%">
<input name="illness[]" id="illness[]" value="20"
type="checkbox">
其他
</td>
</tr>
<tr>
</tr>
<tr>
<td>
填写其他疾病:
<input name="otherill" class="box-box" id="otherill"
value="" type="text">
</td>
</tr>
</tbody>
</table>
发表于 @ 2007年06月29日 13:58:00|编辑