最新的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函數參考