XSLT <xsl:attribute-set>
❮ 完整的 XSLT 元素参考
定义和用法
<xsl:attribute-set> 元素创建一个命名的属性集。属性集可以作为整体应用于输出文档。
注意:必须是 <xsl:stylesheet> 或 <xsl:transform> 的子元素。
语法
<xsl:attribute-set
name="name" use-attribute-sets="name-list">
<!-- 内容:xsl:attribute* -->
</xsl:attribute-set>
属性
属性 | 值 | 描述 |
---|---|---|
name | name | 必需。指定属性集的名称 |
use-attribute-sets | name-list | 可选。要用于属性集的其他属性集的空格分隔列表 |
示例 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 元素参考