在 HTML5 History.pushState(...) 之后获取状态

发布于 2024-09-11 03:48:40 字数 104 浏览 6 评论 0原文

看来调用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 技术交流群。

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

发布评论

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

评论(1

我偏爱纯白色 2024-09-18 03:48:40

您可以尝试将当前 url 存储在 stateObj 中,

function toHistory(url,title) {
    history.pushState({url:url},title,url);
}

这可行,但您必须确保在第一页加载时替换当前状态,以使用当前 url 进行更新。

You could try storing the current url in the stateObj

function toHistory(url,title) {
    history.pushState({url:url},title,url);
}

This works, but you have to make sure you replace the current state on first page load to update with the current url.

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