我具有以下XML內容:選擇xml元素匹配屬性
<root>
<content>
<figure id="fig-001">
<graphic id="fig-001-graId-001"/>
<graphic id="fig-001-graId-002"/>
<graphic id="fig-001-graId-003"/>
</figure>
<figure id="fig-002">
<graphic id="fig-002-graId-001"/>
<graphic id="fig-002-graId-002"/>
</figure>
<refs>
<ref ref-id="fig-001-graId-001" type="test"/>
<ref ref-id="fig-002-graId-001" type="test"/>
</refs>
</content>
</root>
我使用氧
我點擊的元件參/ REF,例如在
<ref ref-id="fig-01-graId-001 type="test" />
我想要一個xpath,其中有圖形/ @ id = ref/@ ref-id(我單擊時)的圖形元素,類似這樣的事情:
count(// content/figure/graphic [@id = // ref/@ ref-id]/parent ::/graphic)==> 3(ref-id = fig-001-graId -001有3個圖形元素)
您希望對該輸入樣本有哪個結果? –
我編輯了我的問題,對不起,這是不正確的 – Valeriane
「*我點擊一個元素refs/ref *」XPath不知道你點擊了哪裏。 –