我想在没有页面刷新的情况下从URL(window.location)中删除值,并在URL中添加值而不重新加载页面。
我使用history.pushState()
但我无法获得完美的输出。
history.pushState(null, null, '28');
这是基本网址
https://www.example.com/color/27-28/fruits/1-2
新网址(删除值): - https://www.example.com/color/27/fruits/1-2
新网址(添加值): - https://www.example.com/color/27-28-29/fruits/1-2
怎么做?
请帮帮我。
提前致谢:)