当请求不是来自链接时,IE 上的 Document.referrer 问题

发布于 2024-11-04 01:44:45 字数 397 浏览 2 评论 0原文

可能的重复:
IE 在 location.replace 之后有空 document.referrer

您好,

我在 IE 中使用 document.referrer 属性时遇到问题。当我不是通过链接而是通过 JavaScript 更改 window.location 访问某个页面时,目标页面的 document.referrer 在 IE7/8 中为空。关于如何解决它有什么想法吗?

谢谢。

Possible Duplicate:
IE has empty document.referrer after a location.replace

Hi there,

I have got an issue on using the document.referrer property in IE. When I get to a page not through a link but changing the window.location through JavaScript, the document.referrer of the destination page is empty in IE7/8. Any idea on how to get around it?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赠我空喜 2024-11-11 01:44:45

将旧页面 URL 存储在 cookie 中。

或者将引用者添加到片段标识符中的 url 中。

location.href = 'page.html' + '#' + location.href

或者使用 javascript 动态创建一个链接,并将其命名为 .click()。所以像

var a = document.createElement('a');
a.href='page.html';
document.body.appendChild(a);//not sure if this is needed
a.click();

Store the old page url in a cookie.

Or add the referer to the url in the fragment identifier.

location.href = 'page.html' + '#' + location.href

Or create a link on the fly with javascript, and call it's .click(). So something like

var a = document.createElement('a');
a.href='page.html';
document.body.appendChild(a);//not sure if this is needed
a.click();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文