我想检查当前节点的父节点是否是Xslt中的根节点.我如何做?
请指导我离开这个问题…
请指导我离开这个问题…
谢谢&问候,
P.SARAVANAN
你可以使用not(ancestor :: *).
原文链接:https://www.f2er.com/xml/292139.html用法示例:
<xsl:template match="node()|@*"> <xsl:if test="not(ancestor::*)"> <xsl:message>The root element is "<xsl:value-of select="name()"/>".</xsl:message> </xsl:if> <xsl:copy> <xsl:apply-templates select="node()|@*"/> </xsl:copy> </xsl:template>