EL表达式遍历方法之一
Posted bichen-01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EL表达式遍历方法之一相关的知识,希望对你有一定的参考价值。
<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表达式遍历方法之一的主要内容,如果未能解决你的问题,请参考以下文章