当前位置: 代码迷 >> JavaScript >> [JSP] c:forEach 怎么输出序号
  详细解决方案

[JSP] c:forEach 怎么输出序号

热度:928   发布时间:2013-08-01 15:23:18.0
[JSP] c:forEach 如何输出序号

  • 关键在于<c:forEach>的varStatus属性,具体代码如下:???
  • ?
    <table width="500" border="0" cellspacing="0" cellpadding="0">  
    <tr>  
        <th>序号</th>  
        <th>姓名</th>  
    </tr>  
    <c:forEach var="student" items="${ students}" varStatus="status">  
    <tr>  
        <td>${ status.index + 1}</td>  
        <td>${ student.name}</td>  
    </tr>  
    </c:forEach>  
    </table>  
    ?
  • ??
  • 备注:status.index是从0开始的。
  相关解决方案