<sec id="abg-c42-s1-1" disp-level="2">
<title>Introduction</title>
问题:
我必须检查disp-level属性,并用。
如果disp-level的值为“ 3”,则
,依此类推。
有什么办法吗?
谢谢...
答案 0 :(得分:0)
好吧,写一个匹配sec[@disp-level]/title
的模板来做到这一点:
<xsl:template match="sec[@disp-level]/title">
<xsl:element name="h{../@disp-level}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
对于大多数样式表,如果样式表包含身份转换模板,则此方法有效并且容易允许其他元素或节点的进一步模块化转换
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
或在XSLT 3中使用声明<xsl:mode on-no-match="shallow-copy"/>
。