Latest web development tutorials

XSLTます。<xsl:属性>要素

XSLTの要素リファレンス・マニュアル 完全なXSLT要素のリファレンス・マニュアル

定義と使用法

ます。<xsl:属性>要素は、要素に属性を追加するために使用されます。

注:<のxsl:属性>要素には、同じ名前を持つ既存の属性を置き換えます。


文法

<xsl:attribute name="attributename" namespace="uri">

<!-- Content:template -->

</xsl:attribute>

プロパティ

属性 描述
name attributename 必需。规定属性的名称。
namespace URI 可选。为属性定义命名空间的 URI。

例1

画素ソース属性に追加します:

<picture>
<xsl:attribute name="source"/>
</picture>

例2

画素ソース属性に追加し、その割り当ての値に「画像/名前」を使用します。

<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の要素リファレンス・マニュアル 完全なXSLT要素のリファレンス・マニュアル