XSLT generate-id() ఫంక్షన్

నిర్వచనం మరియు వినియోగం

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

查看 XSL 文件查看 XSL 文件查看结果