XSLT <xsl:apply-templates> 元素
❮ 完整的 XSLT 元素参考
定义和用法
<xsl:apply-templates> 元素将模板应用于当前元素或当前元素的子节点。
如果我们向 <xsl:apply-templates> 元素添加一个 select 属性,它将只处理与该属性值匹配的子元素。 我们可以使用 select 属性来指定子节点的处理顺序。
语法
<xsl:apply-templates select="expression" mode="name">
<!-- Content:(xsl:sort|xsl:with-param)* -->
</xsl:apply-templates>
属性
属性 | 值 | 描述 |
---|---|---|
select | expression | 可选。 指定要处理的节点。 星号选择整个节点集。 如果省略该属性,则当前节点的所有子节点都会被选中 |
mode | name | 可选。如果为同一个元素定义了多种处理方式,则加以区分 |
实例 1
在文档中的每个标题元素周围包裹一个单独的 h1 元素:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="title">
<h1><xsl:apply-templates/></h1>
</xsl:template>
</xsl:stylesheet>
实例 2
将单个 h1 元素包裹在所有作为消息子项的标题元素周围:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="message">
<h1><xsl:apply-templates select="title"/></h1>
</xsl:template>
</xsl:stylesheet>
实例 3
在所有 mode 属性设置为 "big" 的消息子节点周围包裹一个 h1 元素:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="message">
<h1><xsl:apply-templates select="*" mode="big"/></h1>
</xsl:template>
</xsl:stylesheet>
❮ 完整的 XSLT 元素参考