1. 首先工程中要有JSTL的两个jar包:jstl.jar 和 standard.jar。
2. 其次在页面中引入标签库:<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>。
3. 只用if: <c:if> 用于实现 java 中的 if 语句功能。
<c:if test=”${user.visitCount==1}”>
Print this sentence .
</c:if>
若为 true ,会打印中间部分。也可以声明 var ,方便下一步判断。
<c:if test=”${param.name==’admin’}” value=”result”/>
<c:out value=”${result}” />
4. <c:choose> 和 <c:when> 、 <c:otherwise> 一起实现互斥条件执行,类似于 java 中的 if else.
<c:choose> 一般作为 <c:when> 、 <c:otherwise> 的父标签。
eg :
<c:choose>
<c:when test="${row.v_money<10000}">
初学下海
</c:when>
<c:when test="${row.v_money>=10000&&row.v_money<20000}">
身手小试
</c:when>
<c:otherwise>
商业能手
</c:otherwise>
</c:choose>