XSLT <xsl:attribute-set> 元素
<xsl:attribute-set> 元素可创建命名的属性集, 该属性集(attribute-set)可作为整体应用到输出文档
<xsl:attribute-set name="name" use-attribute-sets="name-list"> <!-- Content:xsl:attribute* --> </xsl:attribute-set>
<xsl:attribute-set> 元素必须是 <xsl:stylesheet> 或 <xsl:transform> 的子节点
属性
属性 | 值 | 描述 |
---|---|---|
name | name | 必需。规定属性集的名称 |
use-attribute-sets | name-list | 可选。在该属性集中使用的其它属性集的列表,由空格分隔 |
范例
创建可应用到任何输出元素的属性集 ( attribute-set )
<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>