c_choose.jsp

来自「《精通JSP编程 》源代码(赵强那本) 很有用的源代码」· JSP 代码 · 共 16 行

JSP
16
字号
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<h4>USA:blue China:red Other:green</h4>
<c:choose>
    <c:when test="${param.country == 'USA'}">
      <font color="blue">
    </c:when>
    <c:when test="${param.country == 'China'}">
      <font color="red">
    </c:when>
    <c:otherwise>
      <font color="green">	
    </c:otherwise>	
  </c:choose>
  ${param.country}</font><br>

⌨️ 快捷键说明

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