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

EL表达式forEach中索引获取

时间:2016-09-07 09:19:29      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

有的时候,不得不使用循环中的索引,比如label对应的单选多选:

<c:forEach items="${lpalls }" var="pall" varStatus="status">
        <label for="${status.index}">${pall.name}</label>
        <input type="checkbox" value="${pall.id}" />                     
</c:forEach>

这样就有label指向到唯一的input标签啦

EL表达式forEach中索引获取

标签:

原文地址:http://www.cnblogs.com/lansefengmeng/p/5848059.html

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