如何在不刷新页面的情况下使用JavaScript从window.Location(URL)中删除哈希我的网址是:http://example.com#something,如何删除#something,而不会导致页面刷新?我尝试了以下解决方案:window.location.hash = '';但是,这不会删除散列符号#从URL。
3 回答
绝地无双
TA贡献1946条经验 获得超4个赞
初步问题:
window.location.href.substr(0, window.location.href.indexOf('#'))
window.location.href.split('#')[0]
关于您的编辑:
window.location
window.location.hash
最最新的答案
添加回答
举报
0/150
提交
取消