2000}">
2000
。"/> 2000}">
2000
。">
JSTL的if就是
語法格式:
<c:if test="<boolean>" var="<string>" scope="<string>"> ...</c:if>
屬性
屬性 | #描述 |
是否必要 | 預設值 |
test |
條件 |
#是 |
無 |
var |
用於儲存條件結果的變數 |
#否 |
無 |
######scope#########var屬性的作用域##########否#########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###### 成果: ### ###rrreee
以上是jstl怎麼在if裡面輸出的詳細內容。更多資訊請關注PHP中文網其他相關文章!