XPath 实例

在本节,让我们通过实例来学习一些基础的 XPath 语法。


XML实例文档

我们将在下面的例子中使用这个 XML 文档:

"books.xml" :
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <bookstore>
  3. <book category="COOKING">
  4. <title lang="en">Everyday Italian</title>
  5. <author>Giada De Laurentiis</author>
  6. <year>2005</year>
  7. <price>30.00</price>
  8. </book>
  9. <book category="CHILDREN">
  10. <title lang="en">Harry Potter</title>
  11. <author>J K. Rowling</author>
  12. <year>2005</year>
  13. <price>29.99</price>
  14. </book>
  15. <book category="WEB">
  16. <title lang="en">XQuery Kick Start</title>
  17. <author>James McGovern</author>
  18. <author>Per Bothner</author>
  19. <author>Kurt Cagle</author>
  20. <author>James Linn</author>
  21. <author>Vaidyanathan Nagarajan</author>
  22. <year>2003</year>
  23. <price>49.99</price>
  24. </book>
  25. <book category="WEB">
  26. <title lang="en">Learning XML</title>
  27. <author>Erik T. Ray</author>
  28. <year>2003</year>
  29. <price>39.95</price>
  30. </book>
  31. </bookstore>

在您的浏览器中查看此 "books.xml" 文件。


加载 XML 文档

所有现代浏览器都支持使用 XMLHttpRequest 来加载 XML 文档的方法。

针对大多数现代浏览器的代码:

  1. var xmlhttp=new XMLHttpRequest()

针对古老的微软浏览器(IE 5 和 6)的代码:

  1. var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")

选取节点

不幸的是,Internet Explorer 和其他处理 XPath 的方式不同。

在我们的例子中,包含适用于大多数主流浏览器的代码。

Internet Explorer 使用 selectNodes() 方法从 XML 文档中的选取节点:

  1. xmlDoc.selectNodes(xpath);

Firefox、Chrome、Opera 以及 Safari 使用 evaluate() 方法从 XML 文档中选取节点:

  1. xmlDoc.evaluate(xpath, xmlDoc, null, XPathResult.ANY_TYPE,null);

选取所有 title

下面的例子选取所有 title 节点:

  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. function loadXMLDoc(dname) {
  5. if (window.XMLHttpRequest) {
  6. xhttp = new XMLHttpRequest();
  7. }
  8. else {
  9. xhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhttp.open("GET", dname, false);
  12. xhttp.send("");
  13. return xhttp.responseXML;
  14. }
  15. xml = loadXMLDoc("/example/xml/bookstore.xml");
  16. path = "/bookstore/book/title"
  17. // code for IE
  18. if (window.ActiveXObject) {
  19. var nodes = xml.selectNodes(path);
  20. for (i = 0; i < nodes.length; i++) {
  21. document.write(nodes[i].childNodes[0].nodeValue);
  22. document.write("<br />");
  23. }
  24. }
  25. // code for Mozilla, Firefox, Opera, etc.
  26. else if (document.implementation && document.implementation.createDocument) {
  27. var nodes = xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
  28. var result = nodes.iterateNext();
  29. while (result) {
  30. document.write(result.childNodes[0].nodeValue);
  31. document.write("<br />");
  32. result = nodes.iterateNext();
  33. }
  34. }
  35. </script>
  36. </body>
  37. </html>

选取第一个 book 的 title

下面的例子选取 bookstore 元素下面的第一个 book 节点的 title:

  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. function loadXMLDoc(dname) {
  5. if (window.XMLHttpRequest) {
  6. xhttp = new XMLHttpRequest();
  7. }
  8. else {
  9. xhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhttp.open("GET", dname, false);
  12. xhttp.send("");
  13. return xhttp.responseXML;
  14. }
  15. xml = loadXMLDoc("/example/xml/bookstore.xml");
  16. path = "/bookstore/book[1]/title";
  17. // code for IE
  18. if (window.ActiveXObject) {
  19. var nodes = xml.selectNodes(path);
  20. for (i = 0; i < nodes.length; i++) {
  21. document.write(nodes[i].childNodes[0].nodeValue);
  22. document.write("<br />");
  23. }
  24. }
  25. // code for Mozilla, Firefox, Opera, etc.
  26. else if (document.implementation && document.implementation.createDocument) {
  27. var nodes = xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
  28. var result = nodes.iterateNext();
  29. while (result) {
  30. document.write(result.childNodes[0].nodeValue);
  31. document.write("<br />");
  32. result = nodes.iterateNext();
  33. }
  34. }
  35. </script>
  36. </body>
  37. </html>

这里有一个问题。上面的例子在 IE 和其他浏览器中输出不同的结果。

IE5 以及更高版本将 [0] 视为第一个节点,而根据 W3C 的标准,应该是 [1]。

为了解决 IE5+ 中 [0] 和 [1] 的问题,可以为 XPath 设置语言选择(SelectionLanguage)。

下面的例子选取 bookstore 元素下面的第一个 book 节点的 title:

  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. function loadXMLDoc(dname) {
  5. if (window.XMLHttpRequest) {
  6. xhttp = new XMLHttpRequest();
  7. }
  8. else {
  9. xhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhttp.open("GET", dname, false);
  12. xhttp.send("");
  13. return xhttp.responseXML;
  14. }
  15. xml = loadXMLDoc("/example/xml/bookstore.xml");
  16. path = "/bookstore/book[1]/title";
  17. // code for IE
  18. if (window.ActiveXObject) {
  19. xml.setProperty("SelectionLanguage", "XPath");
  20. var nodes = xml.selectNodes(path);
  21. for (i = 0; i < nodes.length; i++) {
  22. document.write(nodes[i].childNodes[0].nodeValue);
  23. document.write("<br />");
  24. }
  25. }
  26. // code for Mozilla, Firefox, Opera, etc.
  27. else if (document.implementation && document.implementation.createDocument) {
  28. var nodes = xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
  29. var result = nodes.iterateNext();
  30. while (result) {
  31. document.write(result.childNodes[0].nodeValue);
  32. document.write("<br />");
  33. result = nodes.iterateNext();
  34. }
  35. }
  36. </script>
  37. </body>
  38. </html>

选取所有价格

下面的例子选取 price 节点中的所有文本:

  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. function loadXMLDoc(dname) {
  5. if (window.XMLHttpRequest) {
  6. xhttp = new XMLHttpRequest();
  7. }
  8. else {
  9. xhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhttp.open("GET", dname, false);
  12. xhttp.send("");
  13. return xhttp.responseXML;
  14. }
  15. xml = loadXMLDoc("/example/xml/bookstore.xml");
  16. path = "/bookstore/book/price/text()"
  17. // code for IE
  18. if (window.ActiveXObject) {
  19. var nodes = xml.selectNodes(path);
  20. for (i = 0; i < nodes.length; i++) {
  21. document.write(nodes[i].nodeValue);
  22. document.write("<br />");
  23. }
  24. }
  25. // code for Mozilla, Firefox, Opera, etc.
  26. else if (document.implementation && document.implementation.createDocument) {
  27. var nodes = xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
  28. var result = nodes.iterateNext();
  29. while (result) {
  30. document.write(result.nodeValue + "<br />");
  31. result = nodes.iterateNext();
  32. }
  33. }
  34. </script>
  35. </body>
  36. </html>a

选取价格高于 35 的 price 节点

下面的例子选取价格高于 35 的所有 price 节点:

  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. function loadXMLDoc(dname) {
  5. if (window.XMLHttpRequest) {
  6. xhttp = new XMLHttpRequest();
  7. }
  8. else {
  9. xhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhttp.open("GET", dname, false);
  12. xhttp.send("");
  13. return xhttp.responseXML;
  14. }
  15. xml = loadXMLDoc("/example/xml/bookstore.xml");
  16. path = "/bookstore/book[price>35]/price";
  17. // code for IE
  18. if (window.ActiveXObject) {
  19. var nodes = xml.selectNodes(path);
  20. for (i = 0; i < nodes.length; i++) {
  21. document.write(nodes[i].childNodes[0].nodeValue);
  22. document.write("<br />");
  23. }
  24. }
  25. // code for Mozilla, Firefox, Opera, etc.
  26. else if (document.implementation && document.implementation.createDocument) {
  27. var nodes = xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
  28. var result = nodes.iterateNext();
  29. while (result) {
  30. document.write(result.childNodes[0].nodeValue);
  31. document.write("<br />");
  32. result = nodes.iterateNext();
  33. }
  34. }
  35. </script>
  36. </body>
  37. </html>

选取价格高于 35 的 title 节点

下面的例子选取价格高于 35 的所有 title 节点:

  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. function loadXMLDoc(dname) {
  5. if (window.XMLHttpRequest) {
  6. xhttp = new XMLHttpRequest();
  7. }
  8. else {
  9. xhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10. }
  11. xhttp.open("GET", dname, false);
  12. xhttp.send("");
  13. return xhttp.responseXML;
  14. }
  15. xml = loadXMLDoc("/example/xml/bookstore.xml");
  16. path = "/bookstore/book[price>35]/title";
  17. // code for IE
  18. if (window.ActiveXObject) {
  19. var nodes = xml.selectNodes(path);
  20. for (i = 0; i < nodes.length; i++) {
  21. document.write(nodes[i].childNodes[0].nodeValue);
  22. document.write("<br />");
  23. }
  24. }
  25. // code for Mozilla, Firefox, Opera, etc.
  26. else if (document.implementation && document.implementation.createDocument) {
  27. var nodes = xml.evaluate(path, xml, null, XPathResult.ANY_TYPE, null);
  28. var result = nodes.iterateNext();
  29. while (result) {
  30. document.write(result.childNodes[0].nodeValue);
  31. document.write("<br />");
  32. result = nodes.iterateNext();
  33. }
  34. }
  35. </script>
  36. </body>
  37. </html>