您将需要使用附加模板进行身份转换,以匹配您想要重命名的节点。像这样:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:strip-space elements="*" />
<xsl:output indent="yes" method="html" />
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="URI">
<TAG>
<xsl:apply-templates select="@* | node()"/>
</TAG>
</xsl:template>
</xsl:stylesheet>
应用于(更正结束storybody
标签中的错字)时:
<mothertag>
<atag>
asdfasdfa
</atag>
<storybody>
<p>sometext here<URI ref="http://google.com" /> some more text</p>
</storybody>
</mothertag>
产生:
<mothertag>
<atag>
asdfasdfa
</atag>
<storybody>
<p>sometext here
<TAG ref="http://google.com"></TAG> some more text
</p>
</storybody>
</mothertag>