JSTL的FOREACH循环之每4列加个TR

<c:foreach var="colorsList" varstatus="status" items="${colorList}"><c:foreach var="colorsList" items="${colorList}" varstatus="status">
xml 代码
  1. <c:forEach var="colorsList" items="${colorList}" varStatus="status">    
  2.     <c:if test="${((status.count-1))%4==0}">  
  3.     <tr>  
  4.     </c:if>    
  5.     
  6.     <td width="15%"><input type="text" name="colorName" id="colorName"    
  7.          value="<c:out value="${colorsList.name}"/>onclick="checkColor(this.value);"  
  8.           readonly="true" onMouseOver="this.style.background='#ffff00'" onmouseout="this.style.background='white'">  
  9.       </td>  
  10.   
  11.     <c:if test="${status.count%4==0}">  
  12.    </tr>  
  13.     </c:if>  
  14.    </c:forEach>  
  15.   


     

    <c:if test="${status.count%4==0}">
   
    </c:if>
   


<c:if test="${((status.count-1))%4==0}">
    
    </c:if> 
 
          
     

    <c:if test="${status.count%4==0}">
   
    </c:if>
   

</c:foreach></c:foreach>

你可能感兴趣的:(C++,c,xml,C#)