历史记录。返回并刷新

发布于 2024-10-11 17:49:18 字数 97 浏览 2 评论 0原文

我希望拥有 History.back(); 功能并完全刷新上一页。

知道如何做到这一点(并使其在 IE、FF 和 Chrome 中工作)。

I would like to have the History.back(); functionality with a complete refresh of previous page.

Any idea how to do that (and make it work in IE, FF and Chrome).

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

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

发布评论

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

评论(2

墨小墨 2024-10-18 17:49:18

您可以重定向(通过 window.location)到 document.referrer

,即

window.location.href = document.referrer;

Internet Explorer 修复将引用地址传递到特定位置:

if(IE){ //IE, bool var, has to be defined
    var newlocation = document.createElement('a');
    newlocation.href = URLtoCall;
    document.body.appendChild(newlocation);
    newlocation.click();
}

You could redirect (by window.location) to document.referrer

i.e.

window.location.href = document.referrer;

Internet Explorer fix for passing referrer to a particular location:

if(IE){ //IE, bool var, has to be defined
    var newlocation = document.createElement('a');
    newlocation.href = URLtoCall;
    document.body.appendChild(newlocation);
    newlocation.click();
}
狼亦尘 2024-10-18 17:49:18

您还可以使用位置 Replace() 方法:

window.location.replace(document.referrer)

You can also use the location replace() method:

window.location.replace(document.referrer)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文