使用history.pushstate后js设置默认url

发布于 2024-12-29 16:37:12 字数 378 浏览 2 评论 0原文

我有一个问题。如何从history.pushState添加的url“内容”中删除? 例如,我有一个这个网址:

site.com

好的,现在我将此网址更新为:

site.com/site/subsite

如何恢复默认网址(site.com)。

我尝试 history.pushState("",document.title,document.location.pathname) 但是,

document.location.pathname 是“site.com/site/subsite”

我回到起点:(

I have a problem. How can i remove from url "content" added by history.pushState?
For example i have a this url:

site.com

Ok, now i update this url to this:

site.com/site/subsite

How i can restore default url (site.com).

I try history.pushState("",document.title,document.location.pathname) but,

document.location.pathname is "site.com/site/subsite"

and i return to start point :(

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

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

发布评论

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

评论(1

执笔绘流年 2025-01-05 16:37:12
history.pushState("", document.title, "/");

它将完全从域 URL 中删除状态。

history.pushState("", document.title, "/");

It will remove state completely from the domain url.

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