当前位置 : 主页 > 编程语言 > java >

[JSP] c:forEach 如何输出序号 - luotangsha的专栏

来源:互联网 收集:自由互联 发布时间:2022-10-15
1. 关键在于c:forEach的varStatus属性,具体代码如下: 2. 3. table width="500" border="0" cellspacing="0" cellpadding="0" 4. tr 5. th序号/th 6. th姓名/th 7. /tr 8. c:forEach var="student" items="${ students}" varStatus="stat



1. 关键在于<c:forEach>的varStatus属性,具体代码如下:
2.
3. <table width="500" border="0" cellspacing="0" cellpadding="0">
4. <tr>
5. <th>序号</th>
6. <th>姓名</th>
7. </tr>
8. <c:forEach var="student" items="${ students}" varStatus="status">
9. <tr>
10. 1}</td>
11. <td>${ student.name}</td>
12. </tr>
13. </c:forEach>
14. </table>
15.
16. 备注:status.index是从0开始的。




作者:少帅

网友评论