JavaScript document.referrer

时间:2010-11-10 14:33:43

标签: javascript

我有两个网页

<html>
  <body>
    <p><a href="page2.html">Link</a></p>
  </body>
</html>

第二页。

<html>
  <body>
    <script type="text/javascript">
      document.write(document.referrer);
    </script>
  </body>
</html>

第二页总是空白,似乎没有拿起推荐人,任何想法都是为什么?

2 个答案:

答案 0 :(得分:9)

在IE中,document.referrer仅适用于http://个资源,不适用于https://file://个资源。也许那是你的问题。

编辑even more cases IE中没有传递它。

答案 1 :(得分:0)

实际上你使用的document.referrer将返回除Internet Explorer之外的所有浏览器的请求页面URL。它实际上在IE中返回null。