?
This document uses PHP Chinese website manual Release
<xsl:template> 元素包含了當(dāng)匹配指定節(jié)點(diǎn)時(shí)要應(yīng)用的規(guī)則。
match 屬性用于把模板關(guān)聯(lián)到某個(gè) XML 元素。match 屬性也能用于為 XML 文檔的全部分支定義模板(比如,match="/" 定義了整個(gè)文檔)。
注意:<xsl:template> 是頂層元素(top-level element)。
<xsl:template name="name" match="pattern" mode="mode" priority="number"> <!-- Content:(<xsl:param>*,template) --> </xsl:template>
屬性 | 值 | 描述 |
---|---|---|
name | name | 可選。為模板定義名稱(chēng)。 注釋?zhuān)?/strong>如果省略該屬性,則必須設(shè)置 match 屬性。 |
match | pattern | 可選。模板的匹配模式。 注釋?zhuān)?/strong>如果省略該屬性,則必須設(shè)置 name 屬性。 |
mode | mode | 可選。為模板規(guī)定模式。 |
priority | number | 可選。一個(gè)表示模板的優(yōu)先級(jí)編號(hào)的數(shù)字。 |
<?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>