DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> XSL基礎教程第五章
XSL基礎教程第五章
編輯:XML詳解     
XSL條件IF
    XSL可以用一個IF語句過濾來自XML文檔的信息。
  
  在哪裡放置IF條件
    現在來重新看看你已經看過多次的XML文檔:
  
    <?XML version="1.0"?>
  
    <CATALOG>
  
     <CD>
  
      <TITLE>Empire Burlesque</TITLE>
  
      <ARTIST>Bob Dylan</ARTIST>
  
      <COUNTRY>USA</COUNTRY>
  
      <COMPANY>Columbia</COMPANY>
  
      <PRICE>10.90</PRICE>
  
      <YEAR>1985</YEAR>
  
     </CD>
  
    .
  
    .
  
    .
  
    要想放置一個對文件內容的條件測試if命令,只需要向XSL文檔中增加一個xsl:if元素,如下:
  
    <xsl:if match=".[ARTIST='Bob Dylan']">
  
    ... 一些輸出...
  
    </xsl:if>
  
    現在看一下經過輕微調整的XSL樣式表:
  
    <?XML version='1.0'?>
  
    <xsl:stylesheet XMLns:xsl="http://www.w3.org/TR/WD-xsl">
  
    <xsl:template match="/">
  
     <Html>
  
     <body>
  
      <table border="2" bgcolor="yellow">
  
       <tr>
   <th>Title</th>
  
        <th>Artist</th>
  
       </tr>
  
       <xsl:for-each select="CATALOG/CD">
  
       <xsl:if match=".[ARTIST='Bob Dylan']">
  
       <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>
  
  在浏覽器中轉換
    以下是在浏覽器中將XML文件轉換成Html所需要的簡單代碼:
  
    <Html>
  
    <body>
  
    <script language="Javascript">
  
    // Load XML
  
    var xml = new ActiveXObject("Microsoft.XMLDOM")
  
    XML.async = false
  
    xml.load("cd_catalog.XML")
  
    // Load the XSL
  
    var xsl = new ActiveXObject("Microsoft.XMLDOM")
  
    xsl.async = false
xsl.load("cd_catalog_if.xsl")
  
    // Transform
  
    document.write(XML.transformNode(xsl))
  
    </script>
  
    </body>
  
    </Html>
  
  如果使用的是Internet EXPlorer 5.0 或更高版本,請點擊這裡查看結果。

  XSL條件選擇Choose
    XSL可以使用條件選擇過濾XML文檔。
  
  在哪裡放置選擇條件
    重新看看幾乎在前面每個章節都看到過的XML文檔:
  
    <?XML version="1.0"?>
  
    <CATALOG>
  
     <CD>
  
      <TITLE>Empire Burlesque</TITLE>
  
      <ARTIST>Bob Dylan</ARTIST>
  
      <COUNTRY>USA</COUNTRY>
  
      <COMPANY>Columbia</COMPANY>
  
      <PRICE>10.90</PRICE>
  
      <YEAR>1985</YEAR>
  
     </CD>
  
    .
  
    .
  
    .
  
    要想插入一個對文件內容的條件選擇測試,只需要向XSL文檔中增加xsl:choose、xsl:when 以及 xsl:otherwise 元素,如下:
  
    <xsl:choose>
  
     <xsl:when match=".[ARTIST='Bob Dylan']">
  
       ... 一些代碼 ...
  
     </xsl:when>
<xsl:otherwise>
  
       ... 一些代碼 ...
  
     </xsl:otherwise>
  
    </xsl:choose>
  
    現在來看看經過輕微調整的XSL樣式表:
  
    <?XML version='1.0'?>
  
    <xsl:stylesheet XMLns:xsl="http://www.w3.org/TR/WD-xsl">
  
    <xsl:template match="/">
  
     <Html>
  
     <body>
  
      <table border="2" bgcolor="yellow">
  
       <tr>
  
        <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 match=".[ARTIST='Bob Dylan']">
  
          <td bgcolor="#ff0000">
  
           <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文件轉換成Html所需要的簡單代碼:
  
    <Html>
  
    <body>
  
    <script language="Javascript">
  
    // Load XML
  
    var xml = new ActiveXObject("Microsoft.XMLDOM")
  
    XML.async = false
  
    xml.load("cd_catalog.XML")
  
    // Load the XSL
  
    var xsl = new ActiveXObject("Microsoft.XMLDOM")
  
    xsl.async = false
  
    xsl.load("cd_catalog_choose.xsl")
  
    // Transform
  
    document.write(XML.transformNode(xsl))

  
    </script>
  
    </body>
  
    </Html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved