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

EL表达式遍历方法之一

时间:2019-11-19 10:30:10      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:for   pad   table   用户   username   cell   user   test   order   

 <table border="1px" cellpadding="0" cellspacing="0" width="200px">
        <tr class="red">
            <th>用户id:</th>
            <th>用户名:</th>
            <th>用户密码:</th>
        </tr>

        <c:forEach items="${UserList}" var="user">

            <c:if test="${user.userid%2==0}">
                <tr class="red">
                    <th>${user.userid}</th>
                    <th>${user.username}</th>
                    <th>${user.pwd}</th>
                </tr>
            </c:if>
            <c:if test="${user.userid%2!=0}">
                <tr class="blue">
                    <th>${user.userid}</th>
                    <th>${user.username}</th>
                    <th>${user.pwd}</th>
                </tr>
            </c:if>

        </c:forEach>
    </table>

 

EL表达式遍历方法之一

标签:for   pad   table   用户   username   cell   user   test   order   

原文地址:https://www.cnblogs.com/bichen-01/p/11887565.html

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