XSLT <xsl:namespace-alias> 元素

XSLT 元素参考手册 完整的 XSLT 元素参考手册

定义和用法

<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-prefixprefix
#default
必需。规定您希望更改的命名空间。
result-prefixprefix
#default
必需。为输出规定期望的命名空间。

实例 1

前缀 wxsl 在输出中被转换为前缀 xsl:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:wxsl="//www.w3cschool.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 元素参考手册 完整的 XSLT 元素参考手册

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号