javascript - 不在浏览器历史记录中显示页面
我相信我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个漂亮的代码开箱即用!它是完整的 JavaScript!
This beautiful code works right out the box! It is full JavaScript!
您可以使用
location.replace
移动到新 URL,无需在浏览历史记录中添加其他条目。You can use
location.replace
to move to a new URL without adding another entry to the browsing history.