1 <span style="font-size:14px;"> <c:forEach var ="i" begin="1" end ="20" varStatus="status"> 2 ${i } ${status.index }<br> 3 </c:forEach> 4 </span>
varStatus则定义了一个循环状态变量var:
index int 当前循环索引号
count int 成员总数
first boolean 当前成员是否首位成员
last boolean 当前成员是否末尾成员
时间: 2024-10-10 11:44:48