我有两个网页
<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>
第二页总是空白,似乎没有拿起推荐人,任何想法都是为什么?
答案 0 :(得分:9)
在IE中,document.referrer
仅适用于http://
个资源,不适用于https://
和file://
个资源。也许那是你的问题。
编辑:even more cases IE中没有传递它。
答案 1 :(得分:0)
实际上你使用的document.referrer将返回除Internet Explorer之外的所有浏览器的请求页面URL。它实际上在IE中返回null。