Najnowsze tutoriale tworzenie stron internetowych
 

XSLT <xsl:if> Element


<XSLT element odniesienia

Definicja i Wykorzystanie

<xsl:if> element zawiera szablon, który będzie stosowany tylko wtedy, gdy określony warunek jest spełniony.

Tip: Użyj <xsl:choose> w połączeniu z <xsl:when> i <xsl:otherwise> wyrazić wiele testów warunkowych!


Składnia

<xsl:if
test="expression">

  <!-- Content: template -->

</xsl:if>

Atrybuty

Atrybut Wartość Opis
testexpression Wymagany. Określa stan badanego

Przykłady

Wybierz wartości tytułu i wykonawcy jeżeli cena płycie jest wyższy niż 10:

Przykład 1

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <xsl:for-each select="catalog/cd">
      <xsl:if test="price &gt; 10">
        <tr>
          <td><xsl:value-of select="title"/></td>
          <td><xsl:value-of select="artist"/></td>
        </tr>
      </xsl:if>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
Spróbuj sam "

Wyświetla tytuł każdej płycie. Wstawianie ", " pomiędzy każdym CD-tytuł, jeśli nie jest to ostatnia płyta CD lub przedostatnim. Jeśli jest to ostatnia płyta CD, dodać "!" za tytuł. Jeśli jest to przedostatni CD, dodać ", and " za tytuł:

Przykład 2

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h2>My CD Collection</h2>
    <p>Titles:
    <xsl:for-each select="catalog/cd">
      <xsl:value-of select="title"/>
      <xsl:if test="position()!=last()">
        <xsl:text>, </xsl:text>
      </xsl:if>
      <xsl:if test="position()=last()-1">
        <xsl:text> and </xsl:text>
      </xsl:if>
      <xsl:if test="position()=last()">
        <xsl:text>!</xsl:text>
      </xsl:if>
    </xsl:for-each>
    </p>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
Spróbuj sam "

<XSLT element odniesienia