这种语法有什么问题吗?这似乎对我不起作用,即使我提醒了井号标签并且它与我的 if 语句匹配。
我的代码:
if(window.location.hash) {
var thehash = window.location.hash;
if (thehash !== "#search"){
alert(thehash); // returns "#search"
thehash = thehash.replace(/#/g, '/');
window.location.replace("http://url.com/" + thehash + "/");
}
}
为什么这仍然重定向包含 #search 的 url