<完整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>Artists:</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">
Artist: <a name="{generate-id(artist)}">
<xsl:value-of select="artist" /></a>
<br />
Title: <xsl:value-of select="title" />
<br />
Price: <xsl:value-of select="price" />
<hr />
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<完整XSLT函數參考