将URL中的?=字符串更改为主题标签

时间:2012-07-30 15:53:26

标签: jquery

我正在寻找一个匹配的代码片段?=在网址中并将其替换为#。

e.g:

http://www.example.com?=100

会变成:

http://www.example.com#100

编辑: - 感谢您的帮助,希望用#替换?=并使用: -

  var getURL = window.location.href
  var changeURL = getURL.replace("?=", "#");
  window.location.replace(changeURL);

1 个答案:

答案 0 :(得分:10)

为什么需要使用jQuery?

"http://www.example.com?=100".replace("?=", "#")
//result: http://www.example.com#100