tutoriais mais recente desenvolvimento web
 

XSLT key() Function


<Completa XSLT função Reference

Definição e Uso

A key() a função retorna um nó-conjunto a partir do documento, utilizando o índice especificado por um <xsl:key> elemento.


Sintaxe

node-set key(string, object)

parâmetros

Parâmetro Descrição
string Requeridos. Especifica o nome de um elemento xsl: key
object Requeridos. Uma seqüência de pesquisa para

Exemplo 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>

Ver o arquivo XML , visualizar o arquivo XSL , e ver o resultado .


<Completa XSLT função Reference