📌  相关文章
📜  反应更改 url 参数 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:06.630000             🧑  作者: Mango

代码示例3
if (history.pushState) {
    var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + '?myNewUrlQuery=1';
    window.history.pushState({path:newurl},'',newurl);
}