XSLT <xsl:namespace-alias>
❮ XSLT 元素参考完整版
定义和用法
<xsl:namespace-alias> 元素用于将样式表中的命名空间替换为输出中的不同命名空间。
注意:<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="https://w3schools.org.cn/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 元素参考完整版