<x:if>標(biāo)簽用于判斷一個(gè)XPath表達(dá)式的值,若為真,則執(zhí)行其主體中的內(nèi)容,若為假則其主體的內(nèi)容將會(huì)被忽略。
<x:if select="<string>" var="<string>" scope="<string>"> ... </x:if>
<x:if>標(biāo)簽有如下屬性:
| 屬性 | 描述 | 是否必要 | 默認(rèn)值 |
|---|---|---|---|
| select | 需要計(jì)算的XPath表達(dá)式 | 是 | 無 |
| var | 存儲(chǔ)條件結(jié)果的變量 | 否 | 無 |
| scope | var屬性的作用域 | 否 | Page |
接下來的例子告訴我們?nèi)绾问褂?lt;x:if>標(biāo)簽:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
<html>
<head>
<title>JSTL x:if 標(biāo)簽</title>
</head>
<body>
<h2>Books Info:</h2>
<c:set var="xmltext">
<books>
<book>
<name>Padam History</name>
<author>ZARA</author>
<price>100</price>
</book>
<book>
<name>Great Mistry</name>
<author>NUHA</author>
<price>2000</price>
</book>
</books>
</c:set>
<x:parse xml="${xmltext}" var="output"/>
<x:if select="$output//book">
Document has at least one <book> element.
</x:if>
<br />
<x:if select="$output/books[1]/book/price > 100">
Book prices are very high
</x:if>
</body>
</html>
運(yùn)行結(jié)果如下:
BOOKS INFO: Document has at least one <book> element. Book prices are very high