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

c:forEach实现换行

时间:2017-08-04 15:22:04      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:val   style   items   ue4   eem   set   status   stat   code   

Map<String,String> map = new TreeMap<String,String>();  
map.put("key1", "value1");  
map.put("key2", "value2");  
map.put("key3", "value3");  
map.put("key4", "value4");  
map.put("key5", "value5");  
map.put("key6", "value6");  
map.put("key7", "value7");  
request.setAttribute("map", map);  
<tr>  
    <c:forEach items="${map}" var="note" varStatus="status">  
        <c:if test="${status.index%2==0}">  
            </tr>  
            <tr>  
        </c:if>  
        <td>${note.key }</td>  
        <td>${note.value }</td>           
    </c:forEach>  
</tr> 

 

c:forEach实现换行

标签:val   style   items   ue4   eem   set   status   stat   code   

原文地址:http://www.cnblogs.com/henuyuxiang/p/7285035.html

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