XSLT generate-id() 函数
❮ XSLT 函数参考定义和用法
generate-id() 函数返回一个字符串值,该值唯一标识指定的节点。
如果指定的节点集为空,则返回一个空字符串。如果省略节点集参数,则默认为当前节点。
语法
string generate-id(node-set?)
参数
参数 | 描述 |
---|---|
node-set | 可选。指定要为其生成唯一 ID 的节点集 |
示例 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>
<h3>艺术家:</h3>
<ul>
<xsl:for-each select="catalog/cd">
<li>
<a href="#{generate-id(artist)}">
<xsl:value-of select="artist" /></a>
</li>
</xsl:for-each>
</ul>
<hr />
<xsl:for-each select="catalog/cd">
艺术家: <a id="{generate-id(artist)}">
<xsl:value-of select="artist" /></a>
<br />
标题: <xsl:value-of select="title" />
<br />
价格: <xsl:value-of select="price" />
<hr />
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
❮ XSLT 函数参考