码迷,mamicode.com
首页 > 其他好文 > 详细

<c:forEach /c:forEach>中varStatus的作用

时间:2019-12-01 16:50:51      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:each   元素   reac   ems   打印   div   style   遍历   ref   

varStatus封装了当前遍历的状态,可以从该对象上查看是遍历到了第几个元素
举例如下
            <c:forEach items="${cs}" var="c" varStatus="st">
                <c:if test="${st.count>=5 and st.count<=8}">
                        <span>
                            <a href="forecategory?cid=${c.id}">
                                    ${c.name}
                            </a>
                            <c:if test="${st.count!=8}">
                                <span>|</span>
                            </c:if>
                        </span>
                </c:if>
            </c:forEach>
${st.count>=5 and st.count<=8}即判断在第5个到第8个元素间打印出对应的名字。

<c:forEach /c:forEach>中varStatus的作用

标签:each   元素   reac   ems   打印   div   style   遍历   ref   

原文地址:https://www.cnblogs.com/xcl666/p/11966198.html

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