标签: javascript jquery url hash
如何删除网址中的哈希符号?
我现在想grid[:, [0,-1]] = 4 www.foobar.com/#test。
grid[:, [0,-1]] = 4
www.foobar.com/#test
这是一个愚蠢的想法还是现在结果不好?
干杯
答案 0 :(得分:3)
您可以像这样使用pushState():
pushState()
window.history.pushState(null, "", window.location.href.replace("#", "")) ;
这将删除哈希,而不重新加载页面。