<完整XSLT元素参考
定义和用法
所述<xsl:attribute-set>元素创建一个名为组属性。 该 属性集可以作为整体被应用到输出文档。
Note:必须是孩子<xsl:stylesheet>或<xsl:transform> 。
句法
<xsl:attribute-set
name="name" use-attribute-sets="name-list">
<!-- Content:xsl:attribute* -->
</xsl:attribute-set>
属性
属性 | 值 | 描述 |
---|---|---|
name | name | 需要。 指定属性集的名称 |
use-attribute-sets | name-list | 可选的。 的其它属性集合A空格分隔的列表中的属性设定为使用 |
实施例1
创建可被应用到任何输出元素的属性集:
<xsl:attribute-set name="font">
<xsl:attribute name="fname">Arial</xsl:attribute>
<xsl:attribute name="size">14px</xsl:attribute>
<xsl:attribute name="color">red</xsl:attribute>
</xsl:attribute-set>
<完整XSLT元素参考