C标签也就是jstl,是一个JSP标签集合,它封装了JSP应用的通用核心功能。是EL表达式的扩展。
在使用c标签前需要导包
prefix中的“c”可以是任何字符,但一般写成“c”,uri是包的路径
c标签的一些基本用法:
(1)循环
<c:forEach var="user" items="${list}" varStatus="index">
<h1>第${index.index+1}个</h1>
</c:forEach>
forEach是遍历,user是别名是当前遍历到的对象,list是要遍历的数组
(2)if语句
cif类似于if
<c:if test="${boolean}">
<h1>true</h1>
</c:if>
(3)if else语句
cchoose类似于if else
<c:choose>
<c:when test="${boolean}">false</c:when>
<c:otherwise>true</c:otherwise>
</c:choose>
注:if else语句中只能有一个otherwise,when可以有多个