<x:forEach> 标签

<x:forEach>标签用来循环遍历XML文档的节点。

语法格式

  1. <x:forEach
  2. var="<string>"
  3. select="<string>"
  4. begin="<int>"
  5. end="<int>"
  6. step="<int>"
  7. varStatus="<string>">

属性

<x:forEach>标签有如下属性:

属性描述是否必要默认值
select需要计算的XPath表达式
var用于存储当前项目的变量
begin迭代器的开始索引
end迭代器的结束索引
step迭代的步长
varStatus代表迭代器所存储的状态的变量

实例演示

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
  5. <html>
  6. <head>
  7. <title>JSTL x:forEach 标签</title>
  8. </head>
  9. <body>
  10. <h3>Books Info:</h3>
  11. <c:set var="xmltext">
  12. <books>
  13. <book>
  14. <name>Padam History</name>
  15. <author>ZARA</author>
  16. <price>100</price>
  17. </book>
  18. <book>
  19. <name>Great Mistry</name>
  20. <author>NUHA</author>
  21. <price>2000</price>
  22. </book>
  23. </books>
  24. </c:set>
  25. <x:parse xml="${xmltext}" var="output"/>
  26. <ul class="list">
  27. <x:forEach select="$output/books/book/name" var="item">
  28. <li>Book Name: <x:out select="$item" /></li>
  29. </x:forEach>
  30. </ul>
  31. </body>
  32. </html>

运行结果如下:

  1. BOOKS INFO:
  2. Book Name: Padam History
  3.  
  4. Book Name: Great Mistry