XSLT <xsl:otherwise> एलीमेंट

व्याख्या और उपयोग

<xsl:otherwise> एलीमेंट <xsl:choose> एलीमेंट के डिफ़ॉल्ट व्यवहार को निर्धारित करता है। <xsl:when> की कीमत के बिना अवधारणा लागू होने पर, यह व्यवहार होगा。

व्याकरण

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

गुण

शून्य

उदाहरण

उदाहरण 1

यह कोड 30 से अधिक की कीमत के cd के लिए artist स्तम्भ को गुलाबी पृष्ठभूमि रंग देगा, अन्यथा केवल artist का name आउटपुट करेगा:

<?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" का मूल्य "ग्रीन" होगा:

<xsl:variable name="color">
  <xsl:choose>
    <xsl:when test="@color">
      <xsl:value-of select="@color"/>
    </xsl:when>  
    <xsl:otherwise>ग्रीन</xsl:otherwise>
  </xsl:choose>
</xsl:variable>