XSLT <xsl:otherwise> ສະມາຊິກ

ການກໍານົດແລະການນໍາໃຊ້

<xsl:otherwise> ສະມາຊິກກໍານົດວິທີການຂອງ <xsl:choose> ສະມາຊິກ. ຖ້າບໍ່ມີ <xsl:when> ຕິດຕາມເງື່ອນໄຂ, ຈະເກີດມາຄວາມການດຳເນີນການດັ່ງກ່າວ.

ສັບສິນ

<xsl:otherwise>
<!-- Content:template -->
</xsl:otherwise>

ປະກອບປະກອງ

None

ຄວາມປະໂຫຍດ

ຕົວຢ່າງ 1

ລະບັບລະບຽບລາຍການຈະປ່ຽນສະໜາມສີສົ້ງສີບົວກັບ artist ທີ່ລາຄາ cd ສູງກວ່າ 30, ບໍ່ມີສີສົ້ງສີບົວຈະຖືກຈັດຕັ້ງສູງຄວາມປອດໄພສີ:

<?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">
      <tr>
        <td><xsl:value-of select="title"/></td>
      	<xsl:choose>
          <xsl:when test="price>'10'">
            <td bgcolor="#ff00ff">
            <xsl:value-of select="artist"/></td>
          </xsl:when>
          <xsl:otherwise>
            <td><xsl:value-of select="artist"/></td>
          </xsl:otherwise>
        </xsl:choose>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

ກວດສອບເອກະສານ XMLກວດສອບເອກະສານ XSLກວດສອບຜົນຕາຍ

ຕົວຢ່າງ 2

ປະກາດວ່າມີພະລັງງານ "color". ການຈັດຕັ້ງຄູ່ມູນຂອງມັນໃຫ້ປະກອບກັບບັນດາຄວາມແນວ "color" ຂອງປະກອບປະກອງປະຈຸບັນ. ຖ້າປະກອງປະກອງປະຈຸບັນບໍ່ມີບັນດາຄວາມແນວ "color", ຄູ່ມູນ "color" ຈະເປັນ "green":

<xsl:variable name="color">
  <xsl:choose>
    <xsl:when test="@color">
      <xsl:value-of select="@color"/>
    </xsl:when>  
    <xsl:otherwise>green</xsl:otherwise>
  </xsl:choose>
</xsl:variable>