Javascript:检测页面何时被导航“返回";到

Javascript: detect when page has been navigated quot;backquot; to(Javascript:检测页面何时被导航“返回;到)
本文介绍了Javascript:检测页面何时被导航“返回";到的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我在浏览器中打开了一个页面,然后我转到地址栏并输入另一个页面.然后我点击后退按钮转到我的原始页面.我想写一些 Javascript 代码来检测这种情况并做出响应.

Suppose I have a page open in a browser and I go to my address bar and enter another page. Then I hit the back button to go to my original page. I'd like to write some Javascript code that can detect this scenario and respond to it.

尽我所知,在这种情况下,ready 事件、onload 以及页面本身上的任何内联 Javascript 都不会重新执行.还有什么我可以做的吗?

As best I can tell neither the ready event, the onload, nor any inline Javascript on the page itself is re-executed in this scenario. Is there anything else I can do?

跨浏览器支持在这里很重要.首选但不是必需的基于 jQuery 的解决方案.

Cross-browser support is important here. jQuery based solutions preferred but not required.

为清楚起见进行我假设的导航是页面 A -> 页面 B -> 返回页面 A,我假设页面 B 可能在我的控制之下,也可能不在我的控制之下.

Edit for clarity: the navigation I'm assuming is Page A -> Page B -> back to page A where I'm assuming that Page B may or may not be under my control.

推荐答案

在 Firefox 中,您可以检查 DomContentLoaded 事件.对于跨浏览器的解决方案,需要做更多的工作:

In Firefox, you can check for the DomContentLoaded event. For a cross-browser solution, a little more work is required:

http://dean.edwards.name/weblog/2005/09/busted/

这篇关于Javascript:检测页面何时被导航“返回";到的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)