最新的Web开发教程
 

XSLT <xsl:import> Element


<完整XSLT元素参考

定义和用法

所述<xsl:import>元件是用于将一个样式表的内容导入到另一顶层元素。

Note:导入的样式表比进口的样式表优先级低。

Note:此元件必须作为的第一个子节点<xsl:stylesheet><xsl:transform>


句法

<xsl:import href="URI"/>

属性

属性 描述
hrefURI 需要。 指定样式表的URI导入

实施例1

假设你有一个叫样式表"cdcatalog_ex3.xsl"

<?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>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Title</th>
        <th>Artist</th>
      </tr>
      <tr>
        <td><xsl:value-of select="catalog/cd/title"/></td>
        <td><xsl:value-of select="catalog/cd/artist"/></td>
      </tr>
    </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>

第二个样式表称为"cdcatalog_import.xsl"进口"cdcatalog_ex3.xsl"

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:import href="cdcatalog_ex3.xsl"/>

<xsl:template match="/">
  <xsl:apply-imports/>
</xsl:template>

</xsl:stylesheet>

查看XML文件查看XSL文件 ,并查看结果

Note:这个例子不能在Netscape 6工作,因为它不支持<xsl:apply-imports>元素!


<完整XSLT元素参考