History.js Github 类似 URL 更改 - 用斜杠更改 url 的部分
我正在使用 History.js 并遇到一个问题:我想更改斜杠之前的 URL 部分,例如在目录中浏览时的 github ( https://github.com/browserstate/History.js/ )。 我的代码现在如下所示:
History.pushState(null, "Program od: "+programBack, "program/"+day);
当我多次按下按钮时,网址更改为: program/program/program/6-10-2011 因为history.js只改变了/之后的部分。
History.js 有什么办法可以处理这个问题吗? 谢谢
I am working with History.js and have one problem: I want to change the parts of URL that are before slash, like github when browsing in directories( https://github.com/browserstate/History.js/ ).
My code now looks like this:
History.pushState(null, "Program od: "+programBack, "program/"+day);
And when I push the button multiple times, the url changes to:
program/program/program/6-10-2011 because history.js only changes the part after /.
Is there any way to deal with this in History.js?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果问题是如何让history.js使用绝对/完整url而不是相对url,那么将
“program/”+day
更改为“/program/”+day
>If the question is how to get history.js to use absolute/full urls instead of relative urls, then change
"program/"+day
to"/program/"+day