zoukankan      html  css  js  c++  java
  • jstl的forEach使用和jstl变量实现自增

    <c:forEach items="${reallyChooseSubjectList}" var="reallyChooseSubject"> 
               
               <tr>
                   <td width="20px;">(<%=i %>) </td><td>${reallyChooseSubject.name}</td>
                   <td>
                       <input type="hidden" name="subjectId<%=i %>" id="subjectId<%=i %>" value="${reallyChooseSubject.id }">
               
                </td>
               </tr>
               <tr>
                   <td width="20px;"><td><input type="radio" name="answer<%=i %>" value="A" />A.${reallyChooseSubject.answer_A}</td><td></td>
               </tr>
               <tr>
                   <td width="20px;"><td><input type="radio" name="answer<%=i %>" value="B" />B.${reallyChooseSubject.answer_B}</td><td></td>
               </tr>
               <tr>
                   <td width="20px;"><td>
                       <c:if test="${reallyChooseSubject.answer_C != ''}" scope="page">
                           <input type="radio" name="answer<%=i %>"  value="C" />C.${reallyChooseSubject.answer_C}
                       </c:if>
                   </td><td></td>
               </tr>
               <tr>
                   <td width="20px;"><td>
                       <c:if test="${reallyChooseSubject.answer_D != ''}" scope="page">
                           <input type="radio" name="answer<%=i %>"  value="D" />D.${reallyChooseSubject.answer_D}
                       </c:if>
                   </td><td></td>
               </tr>
               <tr><%i++; %></tr>
               </c:forEach> 

    在循环中变量自增: 

    <%@ page contentType="text/html;charset=gbk" %>
    <%@taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
    <html>
    <head>
    <title>x</title>
    <meta http-equiv="Content-Type" content="text/html;charset=gbk">
    
    </head>
    <body>
    <c:set var="index" value="0" />
    <c:forEach var="x" begin="1" end="9" step="1">
    <c:set var="index" value="${index+1}" />
    index:${index}
    x:${x }
    <br>
    
    </c:forEach>
    <br>
    
    </body>
    </html>
  • 相关阅读:
    ServiceStack在IIS7中发布后出现403.14错误
    ORACLE 误删除数据恢复
    Xamarin官方示例代码无法部署,提示已跳过部署解决方法
    安装完Oracle之后的注意事项
    在VS2013中使用水晶报表
    ArcObjects10.0MapControl不显示地图内容
    ArcObjects10.0引用控件报错
    ArcGIS Desktop10.2与CityEngine2012兼容问题
    mmo设计
    java nio 网络框架实现
  • 原文地址:https://www.cnblogs.com/toSeeMyDream/p/4434484.html
Copyright © 2011-2022 走看看