douershuang7356 2015-02-23 23:16
浏览 764

从(window.location.hash)删除哈希[重复]

I'm using this code

$("#reset_filter").on("click", function(e) {
    window.location.hash = "";
    window.location.reload();
});

for reset the URL on the page but because of (window.location.hash) on the end of the URL I always get #. Is it possible somehow to remove the hash from the URL? I already have tried with

window.location.href.substr(0, window.location.href.indexOf('#'))

and

window.location.href.split('#')[0]

but it was not working, any proposition and help please.

</div>
  • 写回答

2条回答 默认 最新

  • dongwei2030 2015-02-23 23:21
    关注

    No. If you explicitly tell javascript to set a hash-location there will be a hash in the location.

    评论

报告相同问题?

悬赏问题

  • ¥15 win11家庭中文版安装docker遇到Hyper-V启用失败解决办法整理
  • ¥15 gradio的web端页面格式不对的问题
  • ¥15 求大家看看Nonce如何配置
  • ¥15 Matlab怎么求解含参的二重积分?
  • ¥15 苹果手机突然连不上wifi了?
  • ¥15 cgictest.cgi文件无法访问
  • ¥20 删除和修改功能无法调用
  • ¥15 kafka topic 所有分副本数修改
  • ¥15 小程序中fit格式等运动数据文件怎样实现可视化?(包含心率信息))
  • ¥15 如何利用mmdetection3d中的get_flops.py文件计算fcos3d方法的flops?