XSLT <xsl:attribute-set> 元素

  • 定义和使用

    <xsl:attribute-set> 元素创建一个命名的属性集。属性集可以作为一个整体应用于输出文档。
    注意:必须是的子级 <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 可选。要在属性集中使用的其他属性集的空白分隔列表
  • 示例

    创建可应用于任何输出元素的属性集:
    <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>