我正在寻找与 URL 中的 ?= 匹配的片段并将其替换为 #。
例如:
会成为:
编辑:- 感谢您的帮助,正在寻找替换 ?= 与 # 并使用:-
var getURL = window.location.href
var changeURL = getURL.replace("?=", "#");
window.location.replace(changeURL);
我正在寻找与 URL 中的 ?= 匹配的片段并将其替换为 #。
例如:
会成为:
编辑:- 感谢您的帮助,正在寻找替换 ?= 与 # 并使用:-
var getURL = window.location.href
var changeURL = getURL.replace("?=", "#");
window.location.replace(changeURL);