41 lines
708 B
Plaintext
41 lines
708 B
Plaintext
<%--
|
|
Created by IntelliJ IDEA.
|
|
User: Administrator
|
|
Date: 2022/4/2
|
|
Time: 13:10
|
|
To change this template use File | Settings | File Templates.
|
|
--%>
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<%--引入对应的jstl标签--%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
|
|
<html>
|
|
<head>
|
|
<title>jstl-if</title>
|
|
</head>
|
|
<body>
|
|
|
|
<%--
|
|
c:if 来完成逻辑判断,替换java if else
|
|
|
|
--%>
|
|
|
|
<%--<c:if test="true">--%>
|
|
<%-- <h1>true</h1>--%>
|
|
<%--</c:if>--%>
|
|
|
|
<%--<c:if test="false">--%>
|
|
<%-- <h1>false</h1>--%>
|
|
<%--</c:if>--%>
|
|
|
|
<c:if test="${status ==1}">
|
|
<h1>启用</h1>
|
|
</c:if>
|
|
<c:if test="${status ==0}">
|
|
<h1>禁用</h1>
|
|
</c:if>
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|