XSLT <xsl:if>-Element

Das <xsl:if>-Element wird verwendet, um bedingte Tests für den Inhalt der XML-Datei zu platzieren.

<xsl:if> Element

Um bedingte Tests für den Inhalt der XML-Datei zu platzieren, fügen Sie im XSL-Dokument das <xsl:if>-Element hinzu.

Syntax

<xsl:if test="expression">
  ...
  ...wenn die Bedingung erfüllt ist, wird ausgegeben...
  ...
</xsl:if>

Wo das <xsl:if>-Element platziert wird

Um bedingte Tests hinzuzufügen, fügen Sie im <xsl:for-each>-Element des XSL-Datei <xsl:if>-Elemente hinzu:

<?xml version="1.0" encoding="ISO-8859-1"?>
<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 > 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>

Note:Required test The value of the attribute contains the expression to be evaluated.

The above code will only output the title and artist elements of CDs with a price higher than 10.

The above conversion results are similar to this:

View this XML file,View this XSL file,View Results.