<c:if> 标签

<c:if>标签判断表达式的值,如果表达式的值为 true 则执行其主体内容。

语法格式

  1. <c:if test="<boolean>" var="<string>" scope="<string>">
  2. ...
  3. </c:if>

属性

<c:if>标签有如下属性:

属性描述是否必要默认值
test条件
var用于存储条件结果的变量
scopevar属性的作用域page

演示实例

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  4. <html>
  5. <head>
  6. <title>c:if 标签实例</title>
  7. </head>
  8. <body>
  9. <c:set var="salary" scope="session" value="${2000*2}"/>
  10. <c:if test="${salary > 2000}">
  11. <p>我的工资为: <c:out value="${salary}"/><p>
  12. </c:if>
  13. </body>
  14. </html>

运行结果如下:

  1. 我的工资为: 4000