JSP JSTL <x:choose>标签:完成条件判断
<x:choose> 标签与其子标签 <x:when> 和 <x:otherwise> 用于完成条件判断。
语法:
语法:
<x:choose>
body content(<x:when>and<x:otherwise>subtags)
</x:choose>
示例
应用 <x:choose> 标签显示网店中“新宝库”所处的成长阶段,关键代码如下:<%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <c:import url="shopInfo.xml" var="xmlFile" charEncoding="gbk"/> <x:parse var="shopInfo" doc="${xmlFile}"></x:parse> <x:choose> <x:when select="$shopInfo/shops/shop[name='新宝库'][sellAmount/@value> 500000]">商业能手</x:when> <x:when select="$shopInfo/shops/shop[name='新宝库'][sellAmount/@value <500000][sellAmount/@value>100000]">身手小试</x:when> <x:otherwise>初学下海</x:otherwise> </x:choose>
所有教程
- C语言入门
- C语言编译器
- C语言项目案例
- 数据结构
- C++
- STL
- C++11
- socket
- GCC
- GDB
- Makefile
- OpenCV
- Qt教程
- Unity 3D
- UE4
- 游戏引擎
- Python
- Python并发编程
- TensorFlow
- Django
- NumPy
- Linux
- Shell
- Java教程
- 设计模式
- Java Swing
- Servlet
- JSP教程
- Struts2
- Maven
- Spring
- Spring MVC
- Spring Boot
- Spring Cloud
- Hibernate
- Mybatis
- MySQL教程
- MySQL函数
- NoSQL
- Redis
- MongoDB
- HBase
- Go语言
- C#
- MATLAB
- JavaScript
- Bootstrap
- HTML
- CSS教程
- PHP
- 汇编语言
- TCP/IP
- vi命令
- Android教程
- 区块链
- Docker
- 大数据
- 云计算