在html中起到逻辑控制作用
1、设置标签库
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
2、<c:set/>
<c:set var="name" value="" scope="Scope"/>
相当于在Scope.setAttribute("name",value);
3、<c:if test="">
<c:if test="${..}">
</c:if>
test的值为true或false
4、<c:choose> <c:when> <c:otherwise>
<c:choose>
<c:when test="">
</c:when>
<c:when test="">
<c:otherwise>
</c:otherwise>
</c:choose>
5、<c:forEach>
某个域中的遍历集合
<c:forEach var = "item" items="${Scope.list}"> <!-- item属于list中的元素-->
</c:forEach>
6、<c:url>
<c:url value =""/>
eg: <a href = "<c:url value="/index.jsp"/>" />Index </a>
7、<c:param>
<c:param name="name" value="value" />
8、<c:out>
<c:out vlaue = "显示的内容">
网友评论