<สมบูรณ์ XSLT ธาตุอ้างอิง
ความหมายและการใช้งาน
<xsl:namespace-alias> องค์ประกอบที่จะใช้ในการแทนที่ namespace ในสไตล์ชีทเพื่อ namespace ที่แตกต่างกันในการส่งออก
Note: <xsl:namespace-alias> เป็นองค์ประกอบระดับบนสุดและจะต้องเป็นโหนดลูกของ <xsl:stylesheet> หรือ <xsl:transform>
วากยสัมพันธ์
<xsl:namespace-alias
stylesheet-prefix="prefix|#default"
result-prefix="prefix|#default"/>
แอตทริบิวต์
คุณลักษณะ | ความคุ้มค่า | ลักษณะ |
---|---|---|
stylesheet-prefix | prefix #default | จำเป็นต้องใช้ ระบุ namespace ที่คุณต้องการที่จะเปลี่ยน |
result-prefix | prefix #default | จำเป็นต้องใช้ ระบุ namespace ที่ต้องการสำหรับการส่งออก |
ตัวอย่างที่ 1
คำนำหน้า wxsl จะถูกแปลงเป็นคำนำหน้า XSL ในการส่งออก:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:wxsl="http://www.w3ii.com/w3style.xsl">
<xsl:namespace-alias stylesheet-prefix="wxsl" result-prefix="xsl"/>
<xsl:template match="/">
<wxsl:stylesheet>
<xsl:apply-templates/>
</wxsl:stylesheet>
</xsl:template>
</xsl:stylesheet>
<สมบูรณ์ XSLT ธาตุอ้างอิง