<x:forEach[var="varName"]select="XPathExpression">
[varStatus="varStatusName"]
[begin="begin"][end="end"][step="step"]>
body content
</x:forEach>
屬性 | 型別 | 描述 | 參照EL |
---|---|---|---|
select | String | XPath表示式,決定查詢結果 | 不可以 |
var | String | 迴圈體的變數 | 不可以 |
begin | int | 迴圈的起始位置,包括該位置 | 可以 |
end | int | 迴圈的終止位置,包括該位置 | 可以 |
step | int | 迴圈的步長 | 可以 |
varStatus | String | 迴圈的變數狀態 | 不可以 |
<%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <c:import url="bookInfo.xml" var="xmlFile" charEncoding="gbk"/> <x:parse var="bookInfo" doc="${xmlFile}"></x:parse> <x:forEach select="$bookInfo/books/book"> <p><x:out select="id/@value"/><br> <x:out select="name"/><br> <x:out select="publish/@value"/><br> <x:out select="sellAmount/@value"/></p> </x:forEach>
<%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <c:import url="bookInfo.xml" var="xmlFile" charEncoding="gbk"/> <x:parse var="bookInfo"doc="${xmlFile}"></x:parse> <x:forEach select="$bookInfo/books/book" begin="0" end="2"> <p><x:out select="id/@value"/><br> <x:out select="name"/><br> <x:out select="publish/@value"/><br> <x:out select="sellAmount/@value"/></p> </x:forEach>
<%@page pageEncoding="gbk" contentType="text/html;charset=GBK"%> <%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%> <%@taglib prefix="c" uri="/WEB-INF/c.tld"%> <c:import url="book.xml" var="xmlFile" charEncoding="gb2312"/> <x:parse var="tushu" doc="${xmlFile}"/> <x:forEach select="$tushu//book"> <p><x:out select="id/@value"/><br> <x:out select="name/@value"/><br> <x:out select="publish/@value"/><br> <x:out select="price/@value"/></p> </x:forEach>執行結果如下: