从URL中删除哈希符号

时间:2018-02-17 14:47:17

标签: javascript jquery url hash

如何删除网址中的哈希符号?

我现在想grid[:, [0,-1]] = 4 www.foobar.com/#test

这是一个愚蠢的想法还是现在结果不好?

干杯

1 个答案:

答案 0 :(得分:3)

您可以像这样使用pushState()

window.history.pushState(null, "", window.location.href.replace("#", "")) ;

这将删除哈希,而不重新加载页面。