開始學(xué)習(xí) XSLT !

2020-04-24 16:28 更新

XSL 指擴(kuò)展樣式表語言(EXtensible Stylesheet Language), 它是一個(gè) XML 文檔的樣式表語言。

XSLT 指 XSL 轉(zhuǎn)換。在此教程中,你將學(xué)習(xí)如何使用 XSLT 將 XML 文檔轉(zhuǎn)換為其他文檔,比如 XHTML。

現(xiàn)在開始學(xué)習(xí) XSLT !

XSLT 實(shí)例

<?xml version="1.0"?>
<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>
          <td><xsl:value-of select="artist"/></td>
        </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)