0

我想使用 XPath 搜索存在于 XML 文件中的属性值,例如在您键入“//ex1/ex2/ex3/text()”的节点值中搜索,但是如果我想获取 a 的值怎么办?参数存在于节点中,

让我们考虑从以下 XML 数据中获取湿度:

<?xml version="1.0" encoding="UTF-8"?>
    -<rss version="2.0" xmlns:yweather="http://xml.weather.yahoo.com/ns/rss/1.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
    <!-- api6.weather.ch1.yahoo.com Thu May 16 06:04:56 PST 2013 -->
     -<channel> 
 <language>en-us</language>
 <ttl>60</ttl> 
<yweather:atmosphere pressure="29.97" visibility="3.73" rising="0" humidity="73"/> <yweather:astronomy sunset="6:41 pm" sunrise="4:59 am"/>
</channel>
</rss>
4

2 回答 2

2

你可以使用//*/@humidity. 这将为您提供humidity文档中所有位置的所有属性节点。

于 2013-05-18T03:40:41.693 回答
0

你会使用//atmosphere/@humidity. 阅读此XPath 语法教程。

于 2013-05-18T03:12:56.510 回答