Vue 修改当前页面地址栏参数
function updateUrlParameter(param: string, value: string) {const url = new URL(window.location.href); // 获取当前页面的 URL// 解析哈希部分const hash = url.hash ? url.hash.slice(1) : "";const [path, queryString] = hash.split("?");const params = new URLSearchParams(queryString || "");// 设置新的参数值params.set(param, value);// 构建新的哈希部分const newHash = `${path}?${params.toString()}`;// 更新 URL 对象url.hash = newHash;// 使用 pushState() 更新浏览器的 URL 和历史记录window.history.pushState({}, "", url);
}