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

一个样式表 (stylesheet) 可以被导入 (xsl:import) 或者包含 (xsl:include) 其他的样式表。导入和包含的效果是一样的,除了导入的样式表中的定义和模板规则优先于被导入的样式表中的定义和模板规则。 XSLT stylesheet 1XSLT stylesheet 2 是导入和包含的两个例子。

XSLT stylesheet 1

XML源码
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

输出
IMPORTING STYLESHEETS

用HTML察看
IMPORTING STYLESHEETS
XSLT stylesheet (file: id2.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:variable name="id2">Stylesheet 1(id2.xsl)</xsl:variable>
<xsl:variable name="t">Variable t from id2.xsl</xsl:variable>

</xsl:stylesheet>


XSLT stylesheet 2

XML源码
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

输出
IMPORTING STYLESHEETS

用HTML察看
IMPORTING STYLESHEETS
XSLT stylesheet (file: id3.xsl )
<xsl:stylesheet version = '1.0'
     xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<xsl:variable name="id3">Stylesheet 2(id3.xsl)</xsl:variable>
<xsl:variable name="t">Variable t from id3.xsl</xsl:variable>

</xsl:stylesheet>


XSLT stylesheet 3

XML源码
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

输出
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>

用HTML察看

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

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

<xsl:import href="id3.xsl"/>
<xsl:include href="id2.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
</xsl:template>


</xsl:stylesheet>


XSLT stylesheet 4

XML源码
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

输出
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>
<P>Variable t from id3.xsl</P>

用HTML察看

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

Variable t from id3.xsl

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

<xsl:import href="id2.xsl"/>
<xsl:import href="id3.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
     <P>
          <xsl:value-of select="$t"/>
     </P>
</xsl:template>


</xsl:stylesheet>


XSLT stylesheet 5

XML源码
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

输出
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>
<P>Variable t from id2.xsl</P>

用HTML察看

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

Variable t from id2.xsl

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

<xsl:import href="id3.xsl"/>
<xsl:import href="id2.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
     <P>
          <xsl:value-of select="$t"/>
     </P>
</xsl:template>


</xsl:stylesheet>


XSLT stylesheet 6

XML源码
<source>

<H1>IMPORTING STYLESHEETS</H1>

</source>

输出
<P>Stylesheet 1(id2.xsl)</P>
<P>Stylesheet 2(id3.xsl)</P>
<P>Variable t from id2.xsl</P>

用HTML察看

Stylesheet 1(id2.xsl)

Stylesheet 2(id3.xsl)

Variable t from id2.xsl

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

<xsl:import href="id3.xsl"/>
<xsl:include href="id2.xsl"/>
<xsl:template match="/">
     <P>
          <xsl:value-of select="$id2"/>
     </P>
     <P>
          <xsl:value-of select="$id3"/>
     </P>
     <P>
          <xsl:value-of select="$t"/>
     </P>
</xsl:template>


</xsl:stylesheet>