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

A not() függvény true értékkel tér vissza, ha az argumentum hamis, és false értékkel egyéb esetben.

XSLT stíluslap 1

XML forrás
<source>

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

</source>

Kimenet
<P>
  <B style="color:blue">a234</B>
</P>

<P>
  <B style="color:blue">a111</B>
</P>

<P>
  <B style="color:red">a005</B>
</P>

HTML nézet

a234

a111

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>
          <B style="color:red">
               <xsl:value-of select="@id"/>
          </B>
     </P>
</xsl:template>

<xsl:template match="car[@checked]">
     <P>
          <B style="color:blue">
               <xsl:value-of select="@id"/>
          </B>
     </P>
</xsl:template>


</xsl:stylesheet>