1

这种语法有什么问题吗?这似乎对我不起作用,即使我提醒了井号标签并且它与我的 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

4

1 回答 1

4

您需要return falseafter alert,因此它不会运行您的其余功能

于 2012-11-18T16:52:07.037 回答