最新的Web開發教程
 

XSLT <xsl:namespace-alias> Element


<完整XSLT元素參考

定義和用法

所述<xsl:namespace-alias>元件被用來替換在樣式表中一個命名空間在輸出不同的命名空間。

Note: <xsl:namespace-alias>是一個頂級元素,且必須是一個子節點<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="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元素參考