以文本方式查看主题

-  中文XML论坛 - 专业的XML技术讨论区  (http://bbs.xml.org.cn/index.asp)
--  『 XSL/XSLT/XSL-FO/CSS 』  (http://bbs.xml.org.cn/list.asp?boardid=8)
----  [求助]xsl escape(document.referrer)急!!!!!!!!!!!  (http://bbs.xml.org.cn/dispbbs.asp?boardid=8&rootid=&id=51871)


--  作者:BugFree
--  发布时间:8/27/2007 5:34:00 PM

--  [求助]xsl escape(document.referrer)急!!!!!!!!!!!
我用html 调用 带escape(document.referrer)的.js,一切正常.
但用xml+xsl 调用 带escape(document.referrer)的.js,escape(document.referrer)无内容.
请问这要怎么解决啊?

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>无标题页</title>
</head>
<body>
<a href="HTMLPage.htm">sdffffffffffffff</a>
<a href="309.XML">sdffffffffffffff</a>
<a href="310.XML">sdffffffffffffff</a>
</body>
</html>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>无标题页</title>
<script type="text/javascript" src="1.js"></script>

</head>
<body onload="show2()">
</body>
</html>


<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
    <html>
  <script type="text/javascript">
   <xsl:attribute name="src">
    <xsl:text>1.js</xsl:text>
   </xsl:attribute>
   <xsl:attribute name="charset">gb2312</xsl:attribute>
  </script>
  <body onload='show2()'>
    <!--
        This is an XSLT template file. Fill in this area with the
        XSL elements which will transform your XML to XHTML.
    -->
    </body>
    </html>
</xsl:template>

</xsl:stylesheet>


W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
8,230.469ms