XSLT <xsl:if> ÔªËØ

<xsl:if> ÔªËØÓÃÓÚ·ÅÖÃÕë¶Ô XML ÎļþÄÚÈݵÄÌõ¼þ²âÊÔ¡£

<xsl:if> ÔªËØ

ÈçÐè·ÅÖÃÕë¶Ô XML ÎļþÄÚÈݵÄÌõ¼þ²âÊÔ£¬ÇëÏò XSL ÎĵµÌí¼Ó <xsl:if> ÔªËØ¡£

Óï·¨

<xsl:if test="expression">
  ...
  ...Èç¹ûÌõ¼þ³ÉÁ¢ÔòÊä³ö...
  ...
</xsl:if>

Ôںδ¦·ÅÖà <xsl:if> ÔªËØ

ÈçÐèÌí¼ÓÓÐÌõ¼þµÄ²âÊÔ£¬ÇëÔÚ XSL ÎļþÖÐµÄ <xsl:for-each> ÔªËØÄÚ²¿Ìí¼Ó <xsl:if> ÔªËØ£º

<?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 &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>

×¢ÊÍ£º±ØÑ¡µÄ test ÊôÐÔµÄÖµ°üº¬ÁËÐèÒªÇóÖµµÄ±í´ïʽ¡£

ÉÏÃæµÄ´úÂë½ö½ö»áÊä³ö¼Û¸ñ¸ßÓÚ 10 µÄ CD µÄ title ºÍ artist ÔªËØ¡£

ÉÏÃæµÄת»»½á¹ûÀàËÆÕâÑù£º

²é¿´´Ë XML Îļþ£¬²é¿´´Ë XSL Îļþ£¬²é¿´½á¹û¡£

VUE