最新的Web開發教程
 

XSLT <xsl:template> Element


<完整XSLT元素參考

定義和用法

所述<xsl:template>元素包含規則時指定節點匹配到應用。

match屬性用於模板與XML元素相關聯。 的match屬性也可以被用來定義模板的XML文檔的整個分支(ie match="/" defines the whole document)

Note: <xsl:template>是一個頂級元素。


句法

<xsl:template
name="name"
match="pattern"
mode="mode"
priority="number">

  <!-- Content:(<xsl:param>*,template) -->

</xsl:template>

屬性

屬性 描述
namename 可選的。 指定模板的名稱。

Note:如果省略此屬性必須有一個匹配的屬性

matchpattern 可選的。 匹配模式為模板。

Note:如果省略此屬性,必須有一個name屬性

modemode 可選的。 指定一個模式,這個模板
prioritynumber 可選的。 一些指示模板的數字優先級

<?xml version="1.0" encoding="UTF-8"?>
<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>

查看XML文件查看XSL文件 ,並查看結果


<完整XSLT元素參考