在 HTML5 History.pushState(...) 之后获取状态
看来调用history.pushState后,window.location.pathname没有改变(至少在Safari中)。有什么方法可以获取更改后的路径名吗?我目前只是在全局变量中跟踪它。
It seems after calling history.pushState, window.location.pathname doesn't get changed (at least in Safari). Any way to get the changed pathname? I currently just keep track of it in a global var.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将当前 url 存储在 stateObj 中,
这可行,但您必须确保在第一页加载时替换当前状态,以使用当前 url 进行更新。
You could try storing the current url in the stateObj
This works, but you have to make sure you replace the current state on first page load to update with the current url.