在XPath我怎樣才能查詢,如果我找孩子的年齡和名字的人有否孫子Xpath查詢幫助
<documentRoot>
<parent name="data" >
<child id="1" name="alpha" >
<anotherchild>
<age>20</age>
<grandchild/>
</anotherchild>
</child>
<child id="2" name="beta" >
<anotherchild>
<age>50</age>
<grandchild id="2.1" name="beta-alpha" ></grandchild>
<grandchild id="2.2" name="beta-beta" ></grandchild>
</anotherchild>
</child>
</parent>
</documentRoot>
該fi第一個''元素包含無效的標記。有一個「」,沒有對應的「」。 –
我不明白你的問題。兩個''元素在其內容中都有一個''元素(這也是令人困惑的,恰好是XPath樹模型中子元素的孫子)。您想要選擇哪些子元素? –
我問過「誰沒有孫子」,但沒有「誰沒有孫子元素」Tnx – Spring