我想将 #about 之类的 href 值附加到我的 url 的末尾,目前我有一个 var newURL 获取 window.location 并添加了 href 的内容,但现在我有了这个我不确定我实际上是如何替换浏览器中的网址?
JS
var newURL = window.location + href; //href= #about
我想将 #about 之类的 href 值附加到我的 url 的末尾,目前我有一个 var newURL 获取 window.location 并添加了 href 的内容,但现在我有了这个我不确定我实际上是如何替换浏览器中的网址?
JS
var newURL = window.location + href; //href= #about
window.location.hash = "about"
应该这样做
您可以使用几种方法。
window.location.hash
您可以使用window.location.hash
其他答案。
但是如果你想对它进行丰富的操作,你应该去像 http://benalman.com/projects/jquery-bbq-plugin/这样的任何库