目录搜索
XSLT 基础教程XSL 语言XSLT 简介XSLT 浏览器XSLT - 转换XSLT <xsl:template> 元素XSLT <xsl:value-of> 元素XSLT <xsl:for-each> 元素XSLT <xsl:sort> 元素XSLT <xsl:if> 元素XSLT <xsl:choose> 元素XSLT <xsl:apply-templates> 元素XSLT - 在客户端XSLT - 在服务器端XSLT - 编辑 XMLXML 编辑器XSLT 元素参考手册XSLT <xsl:apply-imports> 元素XSLT <xsl:apply-templates> 元素XSLT <xsl:attribute> 元素XSLT <xsl:attribute-set> 元素XSLT <xsl:call-template> 元素XSLT <xsl:choose> 元素XSLT <xsl:comment> 元素XSLT <xsl:copy> 元素XSLT <xsl:copy-of> 元素XSLT <xsl:decimal-format> 元素XSLT <xsl:element> 元素XSLT <xsl:fallback> 元素XSLT <xsl:for-each> 元素XSLT <xsl:if> 元素XSLT <xsl:import> 元素XSLT <xsl:include> 元素XSLT <xsl:key> 元素XSLT <xsl:message> 元素XSLT <xsl:namespace-alias> 元素XSLT <xsl:number> 元素XSLT <xsl:otherwise> 元素XSLT <xsl:output> 元素XSLT <xsl:param> 元素XSLT <xsl:preserve-space> 和 <xsl:strip-space> 元素XSLT <xsl:processing-instruction> 元素XSLT <xsl:sort> 元素XSLT <xsl:stylesheet> 和 <xsl:transform> 元素XSLT <xsl:template> 元素XSLT <xsl:text> 元素XSLT <xsl:value-of> 元素XSLT <xsl:value-of> 元素XSLT <xsl:variable> 元素XSLT <xsl:when> 元素XSLT <xsl:with-param> 元素XSLT 函数XSLT current() 函数XSLT document() 函数XSLT element-available() 函数XSLT format-number() 函数XSLT function-available() 函数XSLT generate-id() 函数XSLT key() 函数XSLT system-property() 函数XSLT unparsed-entity-uri() 函数
文字

XSLT <xsl:apply-templates> 元素



<xsl:apply-templates> 元素可把一个模板应用于当前的元素或者当前元素的子节点。


<xsl:apply-templates> 元素

<xsl:apply-templates> 元素可把一个模板应用于当前的元素或者当前元素的子节点。

假如我们向 <xsl:apply-templates> 元素添加一个 select 属性,此元素就会仅仅处理与属性值匹配的子元素。我们可以使用 select 属性来规定子节点被处理的顺序。

请看下面的 XSL 样式表:

实例

<?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>
<h2>My CD Collection</h2>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="cd">
<p>
<xsl:apply-templates select="title"/>
<xsl:apply-templates select="artist"/>
</p>
</xsl:template>
<xsl:template match="title">
Title: <span style="color:#ff0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
<xsl:template match="artist">
Artist: <span style="color:#00ff00">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
</xsl:stylesheet>
上一篇:下一篇: