<完整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元素參考