假设我的机器上有以下名为 Test.xml 的虚拟 XML 文件:
<bookstore>
<book>
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book>
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
当我在 Internet Explorer 中打开这个 XML 文件时,浏览器会自行将<html>, <body>, <div> and <span>
标签添加到 XML 文件中。我想<year>
在突出显示该特定标记时获得 XPath (bookstore/book/year)
。我从哪里开始?