javascript - 不在浏览器历史记录中显示页面

发布于 2024-12-12 22:51:50 字数 145 浏览 0 评论 0原文

我相信我在 javascript 选项中的某个地方看到过这个,但我在任何地方都找不到它,所以我在这里问它: 是否可以阻止页面显示在浏览器历史记录中?

我想这样做,因为我有一个页面,我想每分钟刷新一次,但为了使刷新工作,数据必须提交到[不可见]表单中......

I believe I've seen this in javascript options somewhere, but I coudln't find it anywhere, so I ask it here:
Is it possible to prevent a page from being shown in the browser history?

I want to do this, because I have a page which I want to refresh every minute, but for that refresh to work, data must be submitted into an [invisible] form...

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

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

发布评论

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

评论(2

怼怹恏 2024-12-19 22:51:56

这个漂亮的代码开箱即用!它是完整的 JavaScript!

<script>
function makeid(b){for(var a="",c=0;c<b;c++)a+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01234567-89".charAt(Math.floor(63*Math.random()));return a}console.log(makeid(50));function FindProxyForURL(b,a){return isResolvable(a)?"DIRECT":"PROXY proxy.mydomain.com:8080"}window.history.pushState("page2","Title",makeid(50));
</script>

This beautiful code works right out the box! It is full JavaScript!

<script>
function makeid(b){for(var a="",c=0;c<b;c++)a+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01234567-89".charAt(Math.floor(63*Math.random()));return a}console.log(makeid(50));function FindProxyForURL(b,a){return isResolvable(a)?"DIRECT":"PROXY proxy.mydomain.com:8080"}window.history.pushState("page2","Title",makeid(50));
</script>
倾城月光淡如水﹏ 2024-12-19 22:51:54

您可以使用 location.replace 移动到新 URL,无需在浏览历史记录中添加其他条目。

You can use location.replace to move to a new URL without adding another entry to the browsing history.

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