XSLT generate-id() 函数

定义和用法

generate-id() 函数返回唯一标识指定节点的字符串值。

如果指定的节点集是空的,则返回空字符串。如果省略了 node-set 参数,则默认设置为当前节点。

语法

  1. string generate-id(node-set?)

参数

参数 描述
node-set 可选。规定生成哪个节点集的唯一 id。

例子

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5. <xsl:template match="/">
  6. <html>
  7. <body>
  8. <h3>Artists:</h3>
  9. <ul>
  10. <xsl:for-each select="catalog/cd">
  11. <li>
  12. <a href="#{generate-id(artist)}">
  13. <xsl:value-of select="artist" /></a>
  14. </li>
  15. </xsl:for-each>
  16. </ul>
  17. <hr />
  18. <xsl:for-each select="catalog/cd">
  19. Artist: <a name="{generate-id(artist)}">
  20. <xsl:value-of select="artist" /></a>
  21. <br />
  22. Title: <xsl:value-of select="title" />
  23. <br />
  24. Price: <xsl:value-of select="price" />
  25. <hr />
  26. </xsl:for-each>
  27. </body>
  28. </html>
  29. </xsl:template>
  30.  
  31. </xsl:stylesheet>