小兔网

JSP 标准标签库JSP 标准标签库

<c:choose>标签与Java switch语句的功能一样,用于在众多选项中做出选择。

switch语句中有case,而<c:choose>标签中对应有<c:when>,switch语句中有default,而<c:choose>标签中有<c:otherwise>。

语法格式

<c:choose>    <c:when test="<boolean>">        ...    </c:when>    <c:when test="<boolean>">        ...    </c:when>    ...    ...    <c:otherwise>        ...    </c:otherwise></c:choose>

属性

  • <c:choose>标签没有属性。
  • <c:when>标签只有一个属性,在下表中有给出。
  • <c:otherwise>标签没有属性。

<c:when>标签的属性如下:

属性描述是否必要默认值
test条件

实例演示

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><html><head><title>c:choose 标签实例</title></head><body><c:set var="salary" scope="session" value="${2000*2}"/><p>你的工资为 : <c:out value="${salary}"/></p><c:choose>    <c:when test="${salary <= 0}">       太惨了。    </c:when>    <c:when test="${salary > 1000}">       不错的薪水,还能生活。    </c:when>    <c:otherwise>        什么都没有。    </c:otherwise></c:choose></body></html>

运行结果如下:

你的工资为 : 4000不错的薪水,还能生活。

JSP 标准标签库JSP 标准标签库