使用 window.location.hash='' 页面从 URL 中删除哈希后,在 Firefox 中重新加载。

编辑

例子:
wwww.Mysite.come/#page=1
单击按钮,我将使用以下代码删除哈希值
window.location.hash=''
删除哈希页面后,Firefox 将重新加载。

我不想重新加载页面我只想从 URL 中删除哈希

如何解决?

最佳答案

来自 https://developer.mozilla.org/en/DOM/window.location :



我认为这个问题解决了你想要使用 jQuery 的问题:

Change hash without reload in jQuery

其他相关问题:

Change the URL in the browser without loading the new page using JavaScript

How to remove the hash from window.location with JavaScript without page refresh?

How can I change Firefox window.location.hash without creating a page reload?

关于jquery - 从 URL 中删除哈希,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10026223/

10-09 14:04