HTML5中history.pushState()和window.onpopstate的后备函数

发布于 2024-11-14 17:47:48 字数 173 浏览 3 评论 0原文

如何为history.pushState()和window.onpopstate添加后备函数?我需要一种 if..else 类型的逻辑。如果浏览器支持继续,否则我需要替代逻辑。即使在某些现代浏览器中也不支持它,例如。在 iPad 中。如果不是pushState,我需要一种方法来捕获JS中浏览器的后退按钮单击,而不会有任何无限循环。

How do I add fallback functions for history.pushState() and window.onpopstate ? I need an if..else kind of logic. If the browser supports proceed, else I need an alternative logic. Even in some modern browsers it is not supported eg. in iPad. If not pushState, I need way to catch the back button click of the browser in JS without any having infinite loop.

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

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

发布评论

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

评论(1

白首有我共你 2024-11-21 17:47:48

History.js 可能会帮助你。它在旧版浏览器上模拟 html5 历史记录功能。

https://github.com/browserstate/history.js

如果你不想要使用history.js,您可以使用url哈希和hashchange事件来捕获后退按钮点击。

history.js might help you. It emulates html5 history functionality on older browsers.

https://github.com/browserstate/history.js

If you don't wan't to use history.js you can probably use url hashes and the hashchange event to catch the back button clicks.

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