最新的Web开发教程
 

XSLT key() Function


<完整XSLT函数参考

定义和用法

key()函数从文档返回一个节点集合中,使用由指定的索引<xsl:key>元素。


句法

node-set key(string, object)

参数

参数 描述
string 需要。 指定一个xsl的名字:关键要素
object 需要。 搜索字符串

实施例1

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:key name="cdlist" match="cd" use="title" />

<xsl:template match="/">
<html>
<body>
<xsl:for-each select="key('cdlist', 'Empire Burlesque')">
  <p>
  Title: <xsl:value-of select="title" />
  <br />
  Artist: <xsl:value-of select="artist" />
  <br />
  Price: <xsl:value-of select="price" />
  </p>
</xsl:for-each>
</body>
</html>
</xsl:template>

</xsl:stylesheet>

查看XML文件查看XSL文件 ,并查看结果


<完整XSLT函数参考