XML中的Id属性和parentId属性如何用Xslt来控制输出
<Node Id="7" ParentId="2">
<NodeData>
<Cell xsi:type="xsd:string">dealerq1@fx</Cell>
<Cell xsi:type="xsd:string">dealer</Cell>
<Cell xsi:nil="true" />
<Cell xsi:nil="true" />
<Cell xsi:nil="true" />
<Cell xsi:nil="true" />
</NodeData>
</Node>
<Node Id="8" ParentId="7">
<NodeData>
<Cell xsi:type="xsd:string" />
<Cell xsi:nil="true" />
<Cell xsi:type="xsd:string">FX-DESK-SELF</Cell>
<Cell xsi:type="xsd:string">balance</Cell>
<Cell xsi:nil="true" />
<Cell xsi:type="xsd:string">USD</Cell>
</NodeData>
</Node>
XML中<Node Id="7" ParentId="2">的Id属性和parentId属性如何用Xslt来控制输出;
我要便利所有Node节点,并对Id属性的值做判断。。。。