1、应用之前要在页面中引用,在lib中添加jstl.jar:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
2、标签详解:
<c:choose>本身只当做 <c:when> 和 <c:otherwise> 的父标签
若使用<c:when>和<c:otherwise>来做流程控制时,两者都必须为<c:choose>的子标签,即:
<c:choose>
:
<c:when>
</c:when>
:
<c:otherwise>
</c:otherwise>
:
</c:choose>
使用标签格式化时间:
<fmt:formatDate pattern="yyyy-MM-dd"
value="${salesmanList.CertificateTime}" />
<c:forTokens>标签用于遍历字符串中用特定分隔符分隔的子字符串,并且能重复执行标签主体
<%
String str = "红旗,奥迪;善战-迅驰";
request.setAttribute("str", str);
%>
<c:forTokens items="${requestScope.str}" delims=",;-" var="temp">
<h1>${temp }</h1>
</c:forTokens>