⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 core_flowcontrol.jsp

📁 jsp 应用开发技术光盘 是《jsp应用开发技术》这本书的源代码
💻 JSP
字号:
<%@ page contentType="text/html;charset=GB2312" %><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><html><head>  <title>JSTL中用于流程控制的标签</title></head><body>    <h2>标签c:if的使用</h2>  <c:if test="${param.username == 'Tom'}" var="condition" scope="session">       您好,Tom  </c:if>  <c:if test="${param.username == 'Jerry'}" var="condition" scope="session">       您好,Jerry  </c:if>  <c:if test="${param.username == 'Mike'}" var="condition" scope="session">       您好,Mike  </c:if>  <c:if test="${param.username == 'Ben'}" var="condition" scope="session">       您好,Ben  </c:if>  <h2>标签c:choose c:when c:otherwise使用</h2>  <c:choose>    <c:when test="${param.username == 'Tom'}">      您好,Tom    </c:when>    <c:when test="${param.username == 'Jerry'}">      您好,Jerry    </c:when>	<c:when test="${param.username == 'Mike'}">      您好,Mike    </c:when>    <c:otherwise>      您好,Ben	    </c:otherwise>	  </c:choose>       </body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -