XSLT <xsl:attribute> 元素

XSLT 元素参考手册


定义和用法

<xsl:attribute> 元素用于向元素添加属性。

注释:<xsl:attribute> 元素会替换名称相同的已有属性。


语法

  1. <xsl:attribute name="attributename" namespace="uri">
  2. <!-- Content:template -->
  3. </xsl:attribute>
属性
属性描述
nameattributename必需。规定属性的名称。
namespaceURI可选。为属性定义命名空间的 URI。

实例

例子 1

向 picture 元素添加 source 属性:

  1. <picture>
  2. <xsl:attribute name="source"/>
  3. </picture>
例子 2

向 picture 元素添加 source 属性,并使用 "images/name" 中的值为其赋值:

  1. <picture>
  2. <xsl:attribute name="source">
  3. <xsl:value-of select="images/name" />
  4. </xsl:attribute>
  5. </picture>
例子 3

创建能够应用到任何输出元素的属性集:

  1. <xsl:attribute-set name="font">
  2. <xsl:attribute name="fname">Arial</xsl:attribute>
  3. <xsl:attribute name="size">14px</xsl:attribute>
  4. <xsl:attribute name="color">red</xsl:attribute>
  5. </xsl:attribute-set>

分类导航