English | Français | Deutsch | Magyar | >> 中文 << | Polski ZVON > Tutorials > XSLT Tutorial
>> 页 1 << | 上一条 | 下一条 | 目录 | 元素索引

你可以用XSL自由地改变任何源文本。 XSLT stylesheet 1 还能 XSLT stylesheet 2 从同一个源文件生成不同的输出。

XSLT stylesheet 1

XML源码
<source>

<title>XSL</title>
<author>John Smith</author>

</source>

输出
<h1>XSL</h1>
<h2>John Smith</h2>

用HTML察看

XSL

John Smith

XSLT stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
     <h1>
          <xsl:value-of select="//title"/>
     </h1>
     <h2>
          <xsl:value-of select="//author"/>
     </h2>
</xsl:template>


</xsl:stylesheet>


XSLT stylesheet 2

XML源码
<source>

<title>XSL</title>
<author>John Smith</author>

</source>

输出
<h2>John Smith</h2>
<h1>XSL</h1>

用HTML察看

John Smith

XSL

XSLT stylesheet
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:template match="/">
     <h2>
          <xsl:value-of select="//author"/>
     </h2>
     <h1>
          <xsl:value-of select="//title"/>
     </h1>
</xsl:template>


</xsl:stylesheet>