<完整XSLT元素参考
定义和用法
所述<xsl:namespace-alias>元件被用来替换在样式表中一个命名空间在输出不同的命名空间。
Note: <xsl:namespace-alias>是一个顶级元素,且必须是一个子节点<xsl:stylesheet>或<xsl:transform> 。
句法
<xsl:namespace-alias
stylesheet-prefix="prefix|#default"
result-prefix="prefix|#default"/>
属性
属性 | 值 | 描述 |
---|---|---|
stylesheet-prefix | prefix #default | 需要。 指定要更改命名空间 |
result-prefix | prefix #default | 需要。 指定所需的命名空间输出 |
实施例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元素参考