<전체 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: 가 지원하지 않기 때문에이 예제는 넷스케이프 6에서 작동하지 않습니다 <xsl:apply-imports> 요소!
<전체 XSLT 요소 참조