JSTL <x:forEach>標簽
<x:forEach>標簽用於遍曆XML文檔中的節點。
屬性:
<x:forEach>標簽具有以下屬性:
屬性 | 描述 | 必須 | 默認 |
---|---|---|---|
select | XPath表達式進行計算評估 | Yes | None |
var | 變量名來保存每個循環的當前項目 | No | None |
begin | 迭代的起始的索引 | No | None |
end | 迭代結束的索引 | No | None |
step | 索引增量的大小,同時遍曆集合 | No | None |
varStatus | 在該迭代中的狀態被存儲的變量的名稱 | No | None |
例子:
<%@ 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 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"/> <ul class="list"> <x:forEach select="$output/books/book/name" var="item"> <li>Book Name: <x:out select="$item" /></li> </x:forEach> </ul> </body> </html>
這將產生以下結果:
BOOKS INFO:
|