以下XSLT模板使用foo bar
更新element
属性。
<xsl:template match='foo/@bar'>
<xsl:attribute name='bar'>New value</xsl:attribute>
</xsl:template>
是否可以删除重复的栏名?
答案 0 :(得分:1)
使用name()
函数动态输出bar
属性名称。
<xsl:template match='foo/@bar'>
<xsl:attribute name='{name()}'>New value</xsl:attribute>
</xsl:template>