我需要通过 id 递归查找 xml 节点,如下所示:
<categories>
<category id="1">
</category>
<category id="2">
<category id="3">
</category>
<category id="4">
<category id="5">
</category>
</category>
</category>
</categories>
我正在使用 DocBuilder。
我知道有 method getElementById()
,但它在我的情况下不起作用,比如说,id="5"
当我在根节点中时,我想找到一个带有 的元素。
可能吗 ?