W
WRainbug!
Unregistered / Unconfirmed
GUEST, unregistred user!
请问一下, 如下xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<items>
<item1 type="1" />
<item2 type="2" />
<item3 type="3" />
<item4 type="2" />
<item5 type="2" />
<item6 type="2" />
</items>
如果要操作 type=3 的条目 是不是只能 先 遍历所有条目 node, 然后判断该条目的type 是不是 = 3, 得到i后, 然后才能操作该node?
有没有像root.ChildNodes.Nodes['items3'] 这样直接得到该node 的方法?
谢谢
<?xml version="1.0" encoding="UTF-8"?>
<items>
<item1 type="1" />
<item2 type="2" />
<item3 type="3" />
<item4 type="2" />
<item5 type="2" />
<item6 type="2" />
</items>
如果要操作 type=3 的条目 是不是只能 先 遍历所有条目 node, 然后判断该条目的type 是不是 = 3, 得到i后, 然后才能操作该node?
有没有像root.ChildNodes.Nodes['items3'] 这样直接得到该node 的方法?
谢谢