说,我的机器上有以下虚拟XML文件名为Test.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>
时获得(bookstore/book/year)
的XPath。我从哪里开始?