lvhaowen的gravatar头像
lvhaowen 2016-08-05 09:18:28

jstl中<c:forEach>的问题

      <c:forEach var="a" items="${as}" varStatus="s">       

      <c:forEach var="b" items="${bs}" varStatus="s">                           

      </c:forEach>                                

      </c:forEach>     

怎么让b获取a的id以a的id循环,在一个页面同时显示                          

所有回答列表(3)
lvhaowen的gravatar头像
lvhaowen  LV20 2016年8月6日

                                  <c:if test="${b.Id==a.Id}">  

评论(0) 最佳答案
zygod的gravatar头像
zygod  LV17 2016年8月8日

${b.Id==a.Id}

黑龙style的gravatar头像
黑龙style  LV4 2016年8月11日
<c:forEach items="${ImgList}" var="row" varStatus="cou" >
    <c:if test="${cou.count eq 1 || (cou.count-1) % 4 eq 0}"><tr></c:if>
    <td colspan="2" >
        <a href="${pageContext.request.contextPath}/${row.url}" target="_blank">
            <div class="prod_item">
                <img src="${pageContext.request.contextPath}/${row.url}" title="${row.photoName}">
            </div>
        </a>
    </td>
    <c:if test="${cou.count % 4 eq 0 || cou.count eq 4}"></tr></c:if>
</c:forEach>
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友