20

对 xpath 来说是全新的。

我有xml:

<Values>
   <Value Value="a" CustomAtr="1" />
   <Value Value="b" CustomAtr="2" />
   <Value Value="c" CustomAtr="3" />
</Values>

要按索引获取值,我可以使用:string(/*/Value[1]/@CustomAtr)

是否可以通过键获得价值?热门获取CustomAtr价值在哪里Value="b"

谢谢

4

1 回答 1

42

这应该可以解决问题:

string(//Value[@Value='b']/@CustomAttr)
于 2012-11-02T11:26:14.597 回答