最新的Web開發教程
 

XSLT <xsl:value-of> Element


<XSLT元素參考

定義和用法

所述<xsl:value-of>元素中提取所選擇的節點的值。

所述<xsl:value-of>元素可被用來選擇一個XML元素的值,並將其添加到輸出。


句法

<xsl:value-of select="expression" disable-output-escaping="yes|no" />

屬性

屬性 描述
selectexpression 需要。 指定哪些節點/屬性的XPath表達式來提取的值。 它的工作原理就像一個瀏覽文件系統,其中一個正斜杠(/)選擇子目錄。
disable-output-escapingyes
no
可選的。 "yes"表示的特殊字符(如“<”)應該被輸出為是。 "no"表示的特殊字符(如“<”)應該被輸出為“&LT;”。 默認為"no"

例子

下面的例子中把從第一標題和藝術家元素中的值,並將其在表中:

實施例1

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h1>Music Collection:</h1>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <tr>
        <td><xsl:value-of select="catalog/cd/title" /></td>
        <td><xsl:value-of select="catalog/cd/artist" /></td>
      </tr>
    </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
試一試»

下面的環的例子槽每個CD元件,並創建與來自標題和藝術家的每個CD元素的值表行:

實施例2

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
  <html>
  <body>
    <h1>Music Collection:</h1>
    <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>
試一試»

<XSLT元素參考