<x:if> 标签

<x:if>标签用于判断一个XPath表达式的值,若为真,则执行其主体中的内容,若为假则其主体的内容将会被忽略。

语法格式

  1. <x:if
  2. select="<string>"
  3. var="<string>"
  4. scope="<string>">
  5. ...
  6. </x:if>

属性

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

属性描述是否必要默认值
select需要计算的XPath表达式
var存储条件结果的变量
scopevar属性的作用域Page

实例演示

接下来的例子告诉我们如何使用<x:if>标签:

  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:if 标签</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. <x:if select="$output//book">
  27. Document has at least one <book> element.
  28. </x:if>
  29. <br />
  30. <x:if select="$output/books[1]/book/price > 100">
  31. Book prices are very high
  32. </x:if>
  33. </body>
  34. </html>

运行结果如下:

  1. BOOKS INFO:
  2. Document has at least one <book> element.
  3. Book prices are very high