码迷,mamicode.com
首页 > Web开发 > 详细

[JSP] c:forEach 输出序号 每行自动生成序号

时间:2016-07-30 12:11:04      阅读:1309      评论:0      收藏:0      [点我收藏+]

标签:

关键在于<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开始的。  

[JSP] c:forEach 输出序号 每行自动生成序号

标签:

原文地址:http://www.cnblogs.com/yhtboke/p/5720558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!