[JSP] c:forEach 如何输出序号
Posted 付吉龙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[JSP] c:forEach 如何输出序号相关的知识,希望对你有一定的参考价值。
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 <td>${ status.index + 1}</td> 11 <td>${ student.name}</td> 12 </tr> 13 </c:forEach> 14 </table> 15 16 备注:status.index是从0开始的。
以上是关于[JSP] c:forEach 如何输出序号的主要内容,如果未能解决你的问题,请参考以下文章
jsp页面怎么判断foreach循环了几次,或者说怎么判断list循环到下标几?
如何在 JSP 页面的脚本标签中使用 <c:forEach>?
c:forEach中对List的遍历,list每一个对象不是bean,而是String,在JSP中,怎么JSTL循环输出list内容