对 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"
?
谢谢