-3

我正在寻找与 URL 中的 ?= 匹配的片段并将其替换为 #。

例如:

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

会成为:

http://www.example.com#100

编辑:- 感谢您的帮助,正在寻找替换 ?= 与 # 并使用:-

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

1 回答 1

10

为什么需要使用 jQuery?

"http://www.example.com?=100".replace("?=", "#")
//result: http://www.example.com#100
于 2012-07-30T15:55:37.523 回答