Kitendo cha <xsl:value-of> cha XSLT
- Mtuagiko wa mchezo wa mawasiliano XSLT <template>
- Mtuagiko wa mchezo XSLT <for-each>
<xsl:value-of> 元素用于提取某个选定节点的值。
<xsl:value-of> 元素
<xsl:value-of> 元素用于提取某个选定节点的值,并把值添加到转换的输出流中:
<?xml version="1.0" encoding="ISO-8859-1"?> <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:value-of select="catalog/cd/title"/>