- XSLT Tutorial
- XSLT - Home
- XSLT - Overview
- XSLT - Syntax
- XSLT - <template>
- XSLT - <value-of>
- XSLT - <for-each>
- XSLT - <sort>
- XSLT - <if>
- XSLT - <choose>
- XSLT - <key>
- XSLT - <message>
- XSLT - <apply-template>
- XSLT - <import>
- XSLT Useful Resources
- XSLT - Quick Guide
- XSLT - Useful Resources
- XSLT - Discussion
XSLT <值>
<xsl:value-of> 标记将所选节点的值按照 XPath 表达式作为文本放置。
宣言
以下是<xsl:value-of>元素的语法声明。
<xsl:value-of select = Expression disable-output-escaping = "yes" | "no" > </xsl:value-of>
属性
先生编号 | 名称和描述 |
---|---|
1 | 选择 要在当前上下文中计算的 XPath 表达式。 |
2 | 禁用输出转义 默认-“否”。如果为“yes”,输出文本将不会从文本中转义 xml 字符。 |
元素
出现次数 | 无限 |
---|---|
父元素 |
xsl:attribute、xsl:comment、xsl:copy、xsl:element、xsl:fallback、xsl:for-each、xsl:if、xsl:message、xsl:otherwise、xsl:param、xsl:processing instructions、xsl:template 、 xsl:variable、xsl:when、xsl:with-param、输出元素 |
子元素 |
没有任何 |
演示示例
此示例创建一个 <student> 元素表,其属性为rollno及其子元素 <firstname>、<lastname>、<nickname> 和 <marks>。
学生.xml
<?xml version = "1.0"?> <?xml-stylesheet type = "text/xsl" href = "students.xsl"?> <class> <student rollno = "393"> <firstname>Dinkar</firstname> <lastname>Kad</lastname> <nickname>Dinkar</nickname> <marks>85</marks> </student> <student rollno = "493"> <firstname>Vaneet</firstname> <lastname>Gupta</lastname> <nickname>Vinni</nickname> <marks>95</marks> </student> <student rollno = "593"> <firstname>Jasvir</firstname> <lastname>Singh</lastname> <nickname>Jazz</nickname> <marks>90</marks> </student> </class>
学生.xsl
<?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> <h2>Students</h2> <table border = "1"> <tr bgcolor = "#9acd32"> <th>Roll No</th> <th>First Name</th> <th>Last Name</th> <th>Nick Name</th> <th>Marks</th> </tr> <xsl:for-each select = "class/student"> <tr> <td><xsl:value-of select = "@rollno"/></td> <td><xsl:value-of select = "firstname"/></td> <td><xsl:value-of select = "lastname"/></td> <td><xsl:value-of select = "nickname"/></td> <td><xsl:value-of select = "marks"/></td> </tr> </xsl:for-each> </table> </body> </html> </xsl:template> </xsl:stylesheet>