HTML5中history.pushState()和window.onpopstate的后备函数
如何为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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.