如何知道该页面是否来自浏览器历史记录

发布于 2024-11-11 08:26:45 字数 208 浏览 0 评论 0原文

我创建了一个 html 页面(page1)。该页面包含一个链接和一个提交按钮。如果单击该链接,则会到达另一个 html 页面(page2)。如果点击提交按钮,该页面将被发送回服务器并转到另一个 html 页面(page2)。如果用户在page2中点击浏览器的后退按钮,将显示page1。这样,用户下次就可以点击提交按钮。我不喜欢这样。所以,我想检查 page1 是否来自浏览器历史记录。我可以得到它吗?

I created a html page(page1). This page contain a link and a submit button. If the link is clicked, the another html page(page2) is reached. If the submit button is clicked, this page is post back to server and go to another html page(page2). If the user is clicked the back button of browser in page2, the page1 will be shown. So, the user can click submit button next time. I do not like this. So, I want to check page1 that is came from browser history or not. Can I get it.

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

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

发布评论

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

评论(2

此刻的回忆 2024-11-18 08:26:45

您可以随时查看推荐人。我不知道你的服务器正在使用什么,所以我无法告诉你如何做到这一点。但是您应该知道,有可能伪造推荐人,因此这并不完全是万无一失的。

You can always check the referrer. I don't know what your server is using, so I can't tell you how to do this. However you should know that it is possible to fake a referrer, so this isn't exactly fool-proof.

浅黛梨妆こ 2024-11-18 08:26:45

我可以做的一种方法是在页面上包含页面生成的时间,然后使用一些 JavaScript 来比较页面生成时的本地时间。如果时间相差阈值,则该站点已在缓存中。这样做的问题是,如果客户端计算机的时间设置不正确,但您可以通过让客户端包含当前系统来生成页面并将该值发送给客户来避免这种情况。

One way I could do is include the time the page was generated on the page and then use some Javascript to compare the local time while the page was generated. If time is different by a threshold, the site has been in a cache. The problem with this is if the client computer has a time set incorrectly, but you can avoid this by having the client include the current system in order to generate the page and send that value to the customer.

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