1. 程式人生 > >JSP如何實現資料自增

JSP如何實現資料自增

在JSP頁面中使用c標籤可以實現資料的自增
關鍵在於<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是從<span class="number">0</span>開始的。