<XSLT Element complet de referință
Definiție și utilizare
<xsl:with-param> Element definește valoarea unui parametru care urmează să fie trecut într - un șablon.
Note: Valoarea name atributului de <xsl:with-param> trebuie să se potrivească un nume într - o <xsl:param> Element (the <xsl:with-param> element is ignored if there is no match) în (the <xsl:with-param> element is ignored if there is no match) în care (the <xsl:with-param> element is ignored if there is no match) un (the <xsl:with-param> element is ignored if there is no match) .
Note: <xsl:with-param> element este permisă în <xsl:apply-templates> și <xsl:call-template> .
Tip: Puteți adăuga o valoare a parametrului de conținutul <xsl:with-param> elementul sau de către select atributul!
Sintaxă
<xsl:with-param
name="name"
select="expression">
<!-- Content:template -->
</xsl:with-param>
atribute
Atribut | Valoare | Descriere |
---|---|---|
name | name | Necesar. Specifică numele parametrului |
select | expression | Opțional. O expresie XPath care definește valoarea parametrului |
Exemplul 1
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template
match="/">
<html>
<body>
<xsl:for-each
select="catalog/cd">
<xsl:call-template name="show_title">
<xsl:with-param name="title" select = "title" />
</xsl:call-template>
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template name = "show_title" >
<xsl:param name = "title"
/>
<p>Title: <xsl:value-of select = "$title" /></p>
</xsl:template>
</xsl:stylesheet>
<XSLT Element complet de referință