aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/xslt/with-param/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/xslt/with-param/index.html')
-rw-r--r--files/es/web/xslt/with-param/index.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/files/es/web/xslt/with-param/index.html b/files/es/web/xslt/with-param/index.html
new file mode 100644
index 0000000000..270684f4d7
--- /dev/null
+++ b/files/es/web/xslt/with-param/index.html
@@ -0,0 +1,43 @@
+---
+title: with-param
+slug: Web/XSLT/with-param
+tags:
+ - Todas_las_Categorías
+ - XSLT
+translation_of: Web/XSLT/Element/with-param
+---
+<p>{{XsltRef}}</p>
+
+<p>El elemento <code>&lt;xsl:with-param&gt;</code> establece el valor de un parámetro que se pasará a una plantilla.</p>
+
+<h3 id="Syntax" name="Syntax">Syntax</h3>
+
+<pre>&lt;xsl:with-param name=NOMBRE select=EXPRESIÓN&gt;
+ PLANTILLA
+&lt;/xsl:with-param&gt;</pre>
+
+<h3 id="Atributos_requeridos" name="Atributos_requeridos">Atributos requeridos</h3>
+
+<dl>
+ <dt><code>name</code></dt>
+ <dd>Dá a este parámetro un nombre.</dd>
+</dl>
+
+<h3 id="Atributos_opcionales" name="Atributos_opcionales">Atributos opcionales</h3>
+
+<dl>
+ <dt><code>select</code></dt>
+ <dd>Define el valor del parámtero a través de una expresión XPath. Si el elemento contiene una plantilla, se ignorará este atributo.</dd>
+</dl>
+
+<h3 id="Tipo" name="Tipo">Tipo</h3>
+
+<p>Subinstrucción, siempre aparece dentro de un elemento <code>&lt;xsl:apply-templates&gt;</code> o <code>&lt;xsl:call-template&gt;</code>.</p>
+
+<h3 id="Definido" name="Definido">Definido</h3>
+
+<p>XSLT 11.6</p>
+
+<h3 id="Soporte_en_Gecko" name="Soporte_en_Gecko">Soporte en Gecko</h3>
+
+<p>Soportado.</p>