3)c:choose,c:when:标签 完成类似java的case的功能: 例2.2.3 <%@ page contentType="text/html; charset=GBK"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <c:set var="salary" value="1300" /> <c:choose> <c:when test="${salary <=1800}"> 低薪 </c:...
<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_mon...
<c:otherwise>高中以下学历</c:otherwise> </c:choose> 》开发三个标签 choose when otherwise 》其中when标签中有一个Boolean类型的属性:test 》choose是when和otherwise的父标签,when在otherwise之前使用 》在父标签中定义一个“全局”的Boolean类型的flag:用于判断子标签在满足条件的情况下是否执行 >若when的test...
<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_mon...
//对应第一个<c:when>标签的主体 out.print("Nnknown user."); }else if(username.equals("Tom")){ //对应第二个<c:when>标签的主体 out.print(username+" is manager."); }else{ //对应<c:otherwise>标签的主体 out.print(username+" is employee."); ...
JSTL标签之<c:choose><c:when><c:otherwise>标签 假设是JSTL1.1版本号,使用<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 否则的话,假设是JSTL1.0版本号,使用<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>,另外须要在项目中导入JSTL和standard两个jar包。
"/></c:if><c:iftest="{age<18}"><c:out value="You are not eligibleforvoting!"/></c:if> 5、c:choose c:when c:otherwise 标签 类似java 中的switch-case和default语句,执行其中一个分支,不执行其他分支。<c:choose>就像switch一样,<c:when>就像可以在里面多次使用的case,用于评估不同的两...
//对应<c:otherwise>标签的主体 out.print(username+" is employee."); } %> <c:choose>、<c:when>和<c:otherwise>标签的使用必须符合以下语法规则: <c:when>和<c:otherwise>不能单独使用,它们必须位于<c:choose>父标签中。 在<c:choose>标签中可以包含一个或多个<c:when>标签。
<c:choose>标签没有属性,可以被认为是父标签,<c:when>、<c:otherwise>将作为其子标签来使用。 <c:when>标签等价于“ if”语句,它包含一个 test属性,该属性表示需要判断的条件。 <c:otherwise>标签没有属性,它等价于“ else”语句。 <c:when>标签的属性: ...
<c:choose> 就像Java switch 语句,它可以让你进行一些选择。正如 switch 语句有 case 语句,<c:choose> 标签有 <c:when> 标签。一个 switch 语句中有 default 子句来指定一个默认的操作,同样的方式<c:choose>有<c:otherwise>作为默认子句。属性:<c:choose> 标签没有任何属性。 <c:when> 标签有一个属性,...