<x:out> 标签


<x:out>标签显示XPath表达式的结果,与<%=  %>功能相似。

属性

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

属性 描述 是否必要 默认值
select 需要计算的XPath表达式,通常使用XPath 变量
escapeXml 是否忽略XML 特殊字符 true

实例演示

接下来的例子使用了<x:out>和<x:parse>标签:

  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2. <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
  3.  
  4. <html>
  5. <head>
  6. <title>JSTL x:out 标签</title>
  7. </head>
  8. <body>
  9. <h3>Books Info:</h3>
  10.  
  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.  
  26. <x:parse xml="${xmltext}" var="output"/>
  27. <b>The title of the first book is</b>:
  28. <x:out select="$output/books/book[1]/name" />
  29. <br>
  30. <b>The price of the second book</b>:
  31. <x:out select="$output/books/book[2]/price" />
  32. </body>
  33. </html>

运行结果如下:

  1. BOOKS INFO:
  2. The title of the first book is: Padam History
  3. The price of the second book: 2000