generate-id() 函式返回唯一標識指定節點的字元串值。
基本介紹
- 中文名:generate id
- 類型:規定生成哪個節點集的唯一 id
- 隸屬:可選
- 隸屬: 函式
正文,定義和用法,語法,例子,
正文
定義和用法
如果指定的節點集是空的,則返回空字元串。如果省略了 node-set 參數,則默認設定為當前節點。
語法
string generate-id(node-set?)參數
參數 | 描述 |
---|---|
node-set | 可選。規定生成哪個節點集的唯一 id。 |
例子
<?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> <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>