XSLT <xsl:import> 元素
❮ 完整的 XSLT 元素参考
定义和用法
<xsl:import> 元素是顶级元素,用于将一个样式表的内容导入另一个样式表。
注释:导入的样式表的优先级低于导入的样式表。
注释:此元素必须作为 <xsl:stylesheet> 或 <xsl:transform> 的第一个子节点出现。
语法
<xsl:import href="URI"/>
属性
属性 | 值 | 描述 |
---|---|---|
href | URI | 必需。指定要导入的样式表的 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>
❮ 完整的 XSLT 元素参考