©
本文档使用 PHP中文网手册 发布
<xsl:namespace-alias> 元素用于把样式表中的命名空间替换为输出中不同的命名空间。
注意:<xsl:namespace-alias> 是顶层元素(top-level element),且必须是 <xsl:stylesheet> 或 <xsl:transform> 的子节点。
<xsl:namespace-alias stylesheet-prefix="prefix|#default" result-prefix="prefix|#default"/>
属性 | 值 | 描述 |
---|---|---|
stylesheet-prefix | prefix #default | 必需。规定您希望更改的命名空间。 |
result-prefix | prefix #default | 必需。为输出规定期望的命名空间。 |
前缀 wxsl 在输出中被转换为前缀 xsl:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wxsl="http://www.shouce.ren/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>