怎么不复制一些属性?

时间:2009-03-23 10:55:14

标签: xslt xpath

我需要从输入文档复制到输出文档除了一个属性之外的所有属性。

我的输入是这样的:

<mylink id="nextButton" type="next" href="javascript:;" />

我需要这样的输出:

<a id="nextButton" href="javascript:;" />

如果我使用以下XSL:

<xsl:template match="mylink">
    <a><xsl:copy-of select="attribute::*"/></a>
</xsl:template>

我得到所有属性输出如下:

<a id="nextButton" type="next" href="javascript:;" />

但我想忽略“type”属性。 我尝试了以下但是它们似乎都没有按我需要的方式工作:

<xsl:copy-of select="attribute::!type"/>
<xsl:copy-of select="attribute::!'type'"/>
<xsl:copy-of select="attribute::*[!type]"/>
<xsl:copy-of select="attribute::not(type)"/>

我应该如何编写样式表以获得所需的输出?

2 个答案:

答案 0 :(得分:36)

最短格式:

<xsl:template match="mylink">
    <a><xsl:copy-of select="@*[name()!='type']"/></a>
</xsl:template>

更长一点(这是我想出的第一件事,我留待参考):

<xsl:template match="mylink">
    <a>
     <xsl:for-each select="@*">
      <xsl:if test="name() != 'type'">
       <xsl:attribute name="{name()}"><xsl:value-of select="."/></xsl:attribute>
      </xsl:if> 
     </xsl:for-each>
    </a>
</xsl:template>

答案 1 :(得分:-1)

在XSLT 2.0中:

{{1}}