最新的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元素参考