English | Français | >> Deutsch << | Magyar | 中文 | Polski | ZVON > Tutorials > XSLT Tutorial |
Intro / Suchen / ZVON |
>> Seite 14 << | Zurück | Vor | Inhalt | Element-Index |
XML Quelltext
<source> <car id="a234" checked="yes"/> <car id="a111" checked="yes"/> <car id="a005"/> </source> Ausgabe
<p>Car: a234</p> <p>Car: a111</p> HTML-Ansicht
Car: a234 Car: a111 |
XSLT Stylesheet
<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> |
XML Quelltext
<source> <car id="a234" checked="yes"/> <car id="a111" checked="yes"/> <car id="a005"/> </source> Ausgabe
<p>Car: a005</p> HTML-Ansicht
Car: a005 |
XSLT Stylesheet
<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> |