Home < c:forEach>遍历list数组时怎么取出元素下标
Post
Cancel

< c:forEach>遍历list数组时怎么取出元素下标

1
2
3
4
5
6
7
8
<c:forEach var="o" items="${orders }" varStatus="st">

当前迭代的元素:${o.ord_code} 
当前迭代的元素:${st.current.ord_code}
当前迭代的索引:${st.index} 
迭代计数:${st.count}
是否是第一次迭代:${st.first} 
是否是最后次迭代:${st.last} 

示例

1
2
3
4
5
6
7
8
<c:forEach var="cost" items="${otherCost}" varStatus="st"> 
    <c:if test="${!st.last}">
        <td>${cost}</td>
    </c:if>
    <c:if test="${st.last}">
        <td style="border-right: 0px;">${cost}</td>
    </c:if>
</c:forEach> 
This post is licensed under CC BY 4.0 by the author.