<Object ID="320">
<Document Name="A" />
<Document Name="B" />
<Document Name="C" />
<Document Name="D" />
<book>1</book>
<book>2</book>
<book>8</book>
</Object>
FOR这个XML结构我想要到达Name的最后一个索引?
Name="D"
我该怎么办?
答案 0 :(得分:0)
如果您正在寻找xslt:
<xsl:template match="Object">
<xsl:value-of select="descendant::Document[last()]"/>
</xsl:template>