JSTL:
1.概念:JavaServer Pages Tag Library JSP标准标签库
2.常用的JSTL标签
导入包:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
1.if 相当于java代码中的if语句
<c:if test="Boolean值 "></c;if>
2.choose 相当于java代码中的switch语句
<c:choose>
<c:when test="${number==1}"></c:when>
<c:when test="${number==2}"></c:when>
<c:when test="${number==3}"></c:when>
<c:when test="${number==4}"></c:when>
<c:otherwise>其他结果运行他</c:otherwise>
</c:choose>
3.foreach 相当于java代码中的for语句
begin:开始值
end:结束值
var:临时变量
step:步长
items:相当于for(User user:list)
varStatus:循环状态对象index :容器中元素的索引,从0开始 count: 循环次数,重1开始
<c:foreach begin=“1” end=“10” var=“i” step="1" vatStatus="s">
${i} ${s.index}${s.count}</c:foreach>
遍历:<c:foreach items="${list}" var="str" varStatus="s"></c:foreach>