XSLT <xsl:include> 元素

定义和用法

<xsl:include> 元素是顶层元素(top-level element),把一个样式表中的样式表内容包含到另一个样式表中。

注释:被包含的样式表(included style sheet)拥有与包含的样式表(including style sheet)相同的优先级。

注释:该元素必须是 <xsl:stylesheet> 或 <xsl:transform> 的子节点。

语法

  1. <xsl:include href="URI"/>

属性

属性 描述
href URI 必需。规定要包含的样式表的 URI。

实例

例子 1

下面的例子包含了名为 xslincludefile.xsl 的样式表:

  1. <?xml version=1.0'?>
  2. <xsl:stylesheet version="1.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4.  
  5. <xsl:output method="xml" omit-xml-declaration="yes"/>
  6.  
  7. <xsl:template match="/">
  8. <xsl:for-each select="COLLECTION/BOOK">
  9. <xsl:apply-templates select="TITLE"/>
  10. <xsl:apply-templates select="AUTHOR"/>
  11. <xsl:apply-templates select="PUBLISHER"/>
  12. <BR/> <!-- add this -->
  13. </xsl:for-each>
  14. </xsl:template>
  15.  
  16. <xsl:template match="TITLE">
  17. <DIV STYLE="color:blue">
  18. Title: <xsl:value-of select="."/>
  19. </DIV>
  20. </xsl:template>
  21.  
  22. <xsl:include href="/xsl/xslincludefile.xsl" />
  23.  
  24. </xsl:stylesheet>