我將xhtml轉換爲xhtml,但需要將xslt樣式表作爲生成文檔的一部分(樣式表將包含在<script type"text/template">
元素中,我使用的是xsl:namespace-alias
指令,這在IE罰款,但在Chrome和Firefox的失敗XSLT命名空間別名在Firefox或Chrome中不起作用
下面是相關代碼:
<xsl:output doctype-system="about:legacy-compat" omit-xml-declaration="yes" indent="yes" method="html" media-type="application/xhml" encoding="utf-8"/>
<xsl:namespace-alias stylesheet-prefix="wxsl" result-prefix="xsl" />
<xsl:template match="head">
<!-- Some code omitted for clarity -->
<script type="text/template">
<wxsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml"
xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:eli="local">
<wxsl:template select="/">
<wxsl:apply-templates />
</wxsl:template>
</wxsl:stylesheet>
</script>
</xsl:copy>
</xsl:template>
它輸出在IE瀏覽器所需要的轉換,但對於Firefox和Chrome的XSLT處理器不用xsl
代替wxsl
前綴