<สมบูรณ์ 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>
ดูไฟล์ XML , ดูไฟล์ XSL และ ดูผลที่ได้
Note: ตัวอย่างนี้จะไม่ทำงานใน Netscape 6 เพราะมันไม่สนับสนุน <xsl:apply-imports> องค์ประกอบ!
<สมบูรณ์ XSLT ธาตุอ้างอิง