JSTL의 if는
문법 형식:
<c:if test="<boolean>" var="<string>" scope="<string>"> ...</c:if>
Attributes
Attribute | Description | 꼭 필요한가요? | 기본값 |
test |
Condition |
Yes |
None |
var |
조건의 결과를 저장하는 변수 |
No |
없음 |
scope |
var 속성 Scope of |
No |
page |
예:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <html> <head> <title>c:if 标签实例</title> </head> <body> <c:set var="salary" scope="session" value="${2000*2}"/> <c:if test="${salary > 2000}"> <p>我的工资为: <c:out value="${salary}"/><p> </c:if> </body> </html>
결과:
我的工资为: 4000
위 내용은 if에서 jstl을 출력하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!