标签: javascript php html html5
我有这个网址:
http://qwertyuiopasdfghjklçzxcvbnm
我希望在不更改页面的情况下将其更改为其他内容:
http://www.something.com
这可能吗?如果是告诉我代码
答案 0 :(得分:0)
您需要使用pushState或replaceState方法
window.history.pushState(null, null, "/your-new-url");
OR
window.history.replaceState(null, null, "/another-new-url");