JSTL标签库的使用

 1、<c:if>标签的语法说明如下:

         <c:if test="expression" var="name" scope="scope">

                  body content

         </c:if>

  <c:if>标签具有以下一些属性:

l          test:用来指定条件判断的表达式。

 

l          var:测定结果的变量名,用来保存条件判断表达式的结果。这样做的目的就是避免在页面中多次进行相同的判断。

 

l          scope:测试结果变量的作用域范围。

 2、<c:forEach>

语法:<c:forEach var="name" items="Collection" varStatus="statusName" begin="begin" end="end" step="step"></c:forEach>

 

你可能感兴趣的:(jstl标签)