최신 웹 개발 튜토리얼
 

XSLT <xsl:attribute> Element


<전체 XSLT 요소 참조

정의 및 사용

<xsl:attribute> 요소 요소에 속성을 추가하는 데 사용됩니다.

참고 : <xsl:attribute> 요소는 해당 이름을 가진 기존의 속성을 대체합니다.


통사론

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

  <!-- Content:template -->

</xsl:attribute>

속성

속성 기술
nameattributename 필요합니다. 속성의 이름을 지정합니다
namespaceURI 선택 과목. 속성의 이름 공간 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 요소 참조