<完全なXSLT要素のリファレンス
定義と使用法
<xsl:attribute>要素は、要素に属性を追加するために使用されます。
注意: <xsl:attribute>要素は、同等の名前を持つ既存の属性を置き換えます。
構文
<xsl:attribute name="attributename" namespace="uri">
<!-- Content:template -->
</xsl:attribute>
属性
属性 | 値 | 説明 |
---|---|---|
name | attributename | 必須。 属性の名前を指定します。 |
namespace | URI | 任意。 属性の名前空間URIを定義します |
例1
画素にソース属性を追加します。
<picture>
<xsl:attribute name="source"/>
</picture>
例2
画素にソース属性を追加してからの値でそれを埋める"images/name" :
<picture>
<xsl:attribute name="source">
<xsl:value-of select="images/name" />
</xsl:attribute>
</picture>
例3
任意の出力要素に適用できる属性セットを作成します。
<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要素のリファレンス