[JSP] c:forEach 如何输出序号 - luotangsha的专栏 - 博客频道 - CSDN.NET
- 关键在于<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开始的。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。