Directs the XSLT processor to find the appropriate template to apply, based on the type and context of each selected node.
<xsl:apply-templates select = Expression mode = QName> </xsl:apply-templates>
select
attribute is an expression, which must evaluate to a node-set. The selected node-set is processed in document order, unless a different sort order has been specified.mode
attribute allows an element to be processed multiple times, each time producing a different result. If <xsl:template>
does not have a match
attribute, it cannot have a mode
attribute. If an <xsl:apply-templates>
element has a mode
attribute, it applies only to template rules from <xsl:template>
elements that have a mode
attribute with the same value. If an <xsl:apply-templates>
element does not have a mode
attribute, it applies only to template rules from <xsl:template>
elements that do not have a mode
attribute.Number of occurrences | Unlimited |
Parent elements | xsl:attribute, xsl:comment, xsl:copy, xsl:element, xsl:fallback, xsl:for-each, xsl:if, xsl:message, xsl:otherwise, xsl:param, xsl:processing-instruction, xsl:template, xsl:variable, xsl:when, xsl:with-param, output elements |
Child elements | xsl:sort, xsl:with-param |
The <xsl:apply-templates>
element first selects a set of nodes using the expression specified in the select
attribute. If this attribute is left unspecified, all children of the current node are selected. For each of the selected nodes, <xsl:apply-templates>
directs the XSLT processor to find an appropriate <xsl:template>
to apply. Templates are tested for applicability by comparing the node to the XPath expression specified in the template's match
attribute. If more than one template satisfies the match pattern, the one appearing with the highest priority is chosen. If several templates have the same priority, the last in the style sheet is chosen.
For more information, see Handling Irregular Data Hierarchies.
The following topic provides an example of the <xsl:apply-templates>
element.