<完整XSLT元素參考
定義和用法
所述<xsl:import>元件是用於將一個樣式表的內容導入到另一頂層元素。
Note:導入的樣式表比進口的樣式表優先級低。
Note:此元件必須作為的第一個子節點<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>
Note:這個例子不能在Netscape 6工作,因為它不支持<xsl:apply-imports>元素!
<完整XSLT元素參考