片段URL转换

发布于 2024-11-03 21:27:20 字数 169 浏览 0 评论 0原文

我的 BBQ 插件已经可以工作了,所以这只是一个表面上的改变。我不知道如何将 URL 从 /index.html#pages/index.html 转换为 /index.html#index

我猜这基本上是一个片段转换,但我对 JS 很陌生。有什么想法吗?

I have the BBQ plugin working already, so this is just a cosmetic change. I have no idea how to transform the URL from /index.html#pages/index.html to just /index.html#index

It's basically a fragment transformation I guess, but am very new to JS. Any thoughts?

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

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

发布评论

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

评论(1

海螺姑娘 2024-11-10 21:27:21

您只需使用 window.location.hash 即可访问哈希,它会返回一个字符串,以便您可以对其进行任何您喜欢的字符串操作。例如:

var temp = window.location.hash; // == #pages/index.html
temp = temp.replace("pages/","").replace(".html","");
window.location.hash = temp; //sets the hash to #index

You can access the hash just using window.location.hash and it returns a string so you can do whatever string manipulation you like on it. For Example:

var temp = window.location.hash; // == #pages/index.html
temp = temp.replace("pages/","").replace(".html","");
window.location.hash = temp; //sets the hash to #index
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文