JSTL <x:out>標簽
<x:out>標簽會顯示一個XPath表達式的結果,它的功能類似於<%= %>JSP語法。
屬性:
<x:out>標簽具有以下屬性:
屬性 | 描述 | 必須 | 默認 |
---|---|---|---|
select | XPath表達式計算為字符串,通常使用XPath變量 | Yes | None |
escapeXml | true - 如果標記應該轉義特殊XML字符 | No | true |
示例:
讓我們舉個例子,將覆蓋標簽(1)<x:out>(2)<x:parse>。
<%@ 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:out Tags</title> </head> <body> <h3>Books Info:</h3> <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"/> <b>The title of the first book is</b>: <x:out select="$output/books/book[1]/name" /> <br> <b>The price of the second book</b>: <x:out select="$output/books/book[2]/price" /> </body> </html>
這將產生以下結果:
BOOKS INFO:The title of the first book is: Padam HistoryThe price of the second book: 2000 |