今天后端同事找我,问我一个关于js无需刷新在url地址添加参数的方法. 然后我百度啊,终于在一篇文章找到了办法,非常简单的一句代码. window.history.pushState({}, 0, window.location.href + '?' + 参数); 假如你的url地址是demo.html,然后在url部分需要添加参数“type=weixin”,然后你可以这样写: window.history.pushState({}, 0, window.location.href + '?ty