<c:if test="判断条件" [var="varname"] [scope="request|page|session|application"] > 代码块 </c:if>其中:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE html> <html> <head> <title>编程帮(www.lmcjl.com)</title> </head> <body> <body> <h1><c:if> 实例</h1> <c:set var="age" value="26" /> <c:if test="${age >= 18}"> <c:out value="你有资格投票!" /> </c:if> <c:if test="${age < 18}" var="res" scope="request"> <c:out value="你没有资格投票!" /> </c:if> <br> <br> <c:out value="${requestScope.res }" /> </body> </html>
<c:if> 实例
你有资格投票!
false
本文链接:http://task.lmcjl.com/news/5546.html