我有这个:
<h1>This <i>is</i> a <a href="#someID">good</a> link</h1>
我想只删除<a>
而不是<a>
中的内容,而不是斜体,所以我得到:
This <i>is</i> a good link
如何在XSLT 2.0中执行此操作?
答案 0 :(得分:2)
使用
<xsl:template match="a">
<xsl:apply-templates/>
</xsl:template>
表示a
元素以及标识转换模板
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* , node()"/>
</xsl:copy>
</xsl:template>