English | Français | Deutsch | >> Magyar << | 中文 | Polski ZVON > Tutorials > XSLT Tutorial
>> Oldal 14 << | Előző | Következő | Tartalom | Elem index

Az alapján is kiválaszthatóak az elemek, hogy rendelkeznek-e a megadott attribútummal. Az XSLT stíluslap 1 mellékeli, míg az XSLT stíluslap 2 elvonja a megadott elemeket, ha a megadott attribútum jelen van.

XSLT stíluslap 1

XML forrás
<source>

<car id="a234" checked="yes"/>
<car id="a111" checked="yes"/>
<car id="a005"/>

</source>

Kimenet
<p>Car: a234</p>

<p>Car: a111</p>

HTML nézet

Car: a234

Car: a111

XSLT stíluslap
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="car[@checked]">
     <p>
          <xsl:text>Car: </xsl:text>
          <xsl:value-of select="@id"/>
     </p>
</xsl:template>


</xsl:stylesheet>


XSLT stíluslap 2

XML forrás
<source>

<car id="a234" checked="yes"/>
<car id="a111" checked="yes"/>
<car id="a005"/>

</source>

Kimenet
<p>Car: a005</p>

HTML nézet

Car: a005

XSLT stíluslap
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="car[not(@checked)]">
     <p>
          <xsl:text>Car: </xsl:text>
          <xsl:value-of select="@id"/>
     </p>
</xsl:template>


</xsl:stylesheet>