81,122
社区成员




<table width="100%" class="statusDataTable">
<c:forEach var="i" begin="0" end="10" step="1" >
<c:choose>
<c:when test="${i}%2==0">// <c:when test="${i%2==0}">这样写也不行
<tr bgcolor="#FFFFFF">
<td>${i}</td>
</tr>
</c:when>
<c:otherwise>
<tr bgcolor="#E1DEDD">
<td>${i}</td>
</tr>
</c:otherwise>
</c:choose>
</c:forEach>
</table>