我正在寻找一个匹配的代码片段?=在网址中并将其替换为#。
e.g:
会变成:
编辑: - 感谢您的帮助,希望用#替换?=并使用: -
var getURL = window.location.href
var changeURL = getURL.replace("?=", "#");
window.location.replace(changeURL);
答案 0 :(得分:10)
为什么需要使用jQuery?
"http://www.example.com?=100".replace("?=", "#")
//result: http://www.example.com#100