XSLT <xsl:if> Element

<xsl:if> a cikin wuri don kara tattaburin fayil XML.

<xsl:if> a cikin

ka'idin za aminuwa tabbatar da tsammanin tattaburin fayil XML, kama iya zama a kara <xsl:if> a cikin dokar XSL.

linga

<xsl:if test="expression">
  ...
  ...bayan anan ya samu haka, ya zama a cika
  ...
</xsl:if>

ta ake <xsl:if> a cikin

ka'idin za aminuwa tabbatar da tsammanin tattaburin, kama iya zama a kara <xsl:for-each> a cikin XSL fayil din a yi <xsl:if> a cikin

<?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 result is similar to this:

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