English | Français | Deutsch | Magyar | 中文 | >> Polski << ZVON > Tutorials > XSLT Tutorial
>> Strona 68 << | Poprzedni | Następny | Zawartość | Indeks elementu

Arkusz stylów XSLT 3 importuje Arkusz stylów XSLT 2 , a Arkusz stylów XSLT 2 importuje Arkusz stylów XSLT 1 .

Arkusz stylów XSLT 1

Źródło XML
<source>

<AAA>red</AAA>
<BBB>blue</BBB>
<CCC>purple</CCC>

</source>

Dane wyjściowe
<h3 style="color:red">red</h3>
blue
purple

Widok HTML

red

blue purple
Arkusz stylów XSLT (file: id2.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="AAA">
     <h3 style="color:{.}">
          <xsl:value-of select="."/>
     </h3>
</xsl:template>


</xsl:stylesheet>


Arkusz stylów XSLT 2

Źródło XML
<source>

<AAA>red</AAA>
<BBB>blue</BBB>
<CCC>purple</CCC>

</source>

Dane wyjściowe
<h3 style="color:red">red</h3>

<h2 style="color:blue">blue</h2>
purple

Widok HTML

red

blue

purple
Arkusz stylów XSLT (file: id3.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:import href="id2.xsl"/>
<xsl:template match="BBB">
     <h2 style="color:{.}">
          <xsl:value-of select="."/>
     </h2>
</xsl:template>


</xsl:stylesheet>


Arkusz stylów XSLT 3

Źródło XML
<source>

<AAA>red</AAA>
<BBB>blue</BBB>
<CCC>purple</CCC>

</source>

Dane wyjściowe
<h3 style="color:red">red</h3>

<h2 style="color:blue">blue</h2>

<h1 style="color:purple">purple</h1>

Widok HTML

red

blue

purple

Arkusz stylów XSLT (file: id4.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:include href="id3.xsl"/>
<xsl:template match="CCC">
     <h1 style="color:{.}">
          <xsl:value-of select="."/>
     </h1>
</xsl:template>


</xsl:stylesheet>