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

📄 coredemo2.jsp

📁 此资源是jsp应用开发 邓子云等编写的一书里的源代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
  <head>
    <title>
      JSTL标签库中条件标签
    </title>
  </head>
  <body bgcolor="#ffffff">
    <%
    int i=(int)(Math.random()*10);
    pageContext.setAttribute("signalStrength",new Integer(i));
    %>
  <c:if test="${pageScope.signalStrength < 5}">
        <c:set var="signalFailure" value="true"
        scope="page" />
    </c:if>
    <h1> 使用 If 和 Choose</h1>
    <c:choose>
        <c:when test="${pageScope.signalFailure == true}">
            信号断开
        </c:when>
        <c:otherwise>
            信号打开
        </c:otherwise>
    </c:choose>

  </body>
  </html>

⌨️ 快捷键说明

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