XPath 是一門在 XML 文件中尋找資訊的語言。

XPath 節點 語法

在 XPath 中,有七種類型的節點:元素、屬性、文字、命名空間、處理指令、註解以及文件(根)節點。 XML 文件是被當作節點樹來對待的。樹的根被稱為文檔節點或根節點。

XPath 節點 範例

<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
  <book>
    <title>Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
  </book>
</bookstore>

上面的XML文檔中的節點範例:

<bookstore> (文檔節點)
<author>J K. Rowling</author> (元素節點)
lang="en" (屬性節點)