387

我有类似的 URL:http://example.com#something,我如何删除#something,而不导致页面刷新?

我尝试了以下解决方案:

window.location.hash = '';

但是,这不会#从 URL 中删除井号。

4

17 回答 17

643

如今,解决这个问题更加触手可及。HTML5 History API允许我们操纵位置栏以显示当前域中的任何 URL 。

function removeHash () { 
    history.pushState("", document.title, window.location.pathname
                                                       + window.location.search);
}

工作演示:http: //jsfiddle.net/AndyE/ycmPt/show/

这适用于 Chrome 9、Firefox 4、Safari 5、Opera 11.50IE 10。对于不受支持的浏览器,您始终可以编写一个优雅的降级脚本,在可用的情况下使用它:

function removeHash () { 
    var scrollV, scrollH, loc = window.location;
    if ("pushState" in history)
        history.pushState("", document.title, loc.pathname + loc.search);
    else {
        // Prevent scrolling by storing the page's current scroll offset
        scrollV = document.body.scrollTop;
        scrollH = document.body.scrollLeft;

        loc.hash = "";

        // Restore the scroll offset, should be flicker free
        document.body.scrollTop = scrollV;
        document.body.scrollLeft = scrollH;
    }
}

因此,您可以摆脱井号,但不是在所有浏览器中都如此。

注意:如果要替换浏览器历史记录中的当前页面,请使用replaceState()代替pushState().

于 2011-03-14T12:38:17.623 回答
234

最初的问题:

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

或者

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

两者都将返回不带散列的 URL 或其后的任何内容。

关于您的编辑:

任何更改window.location都会触发页面刷新。您可以window.location.hash在不触发刷新的情况下进行更改(尽管如果您的哈希与页面上的 id 匹配,窗口会跳转),但您无法摆脱哈希符号。选择哪个更糟...

最新的答案

关于如何在不牺牲(完全重新加载或将哈希符号留在那里)的情况下做到这一点的正确答案在这里。在这里留下这个答案是关于 2009 年的原始答案,而利用新浏览器 API 的正确答案是 1.5 年后给出的。

于 2009-09-09T03:06:38.220 回答
137

(太多的答案是多余的和过时的。)现在最好的解决方案是:

history.replaceState(null, null, ' ');
于 2018-03-19T22:54:55.677 回答
46

简单优雅:

history.replaceState({}, document.title, ".");  // replace / with . to keep url
于 2015-01-26T18:02:41.657 回答
23

你可以这样做:

history.replaceState({}, document.title, window.location.href.split('#')[0]);
于 2018-09-23T12:53:47.797 回答
15

要删除哈希,您可以尝试使用此功能

function remove_hash_from_url()
{
    var uri = window.location.toString();
    if (uri.indexOf("#") > 0) {
        var clean_uri = uri.substring(0, uri.indexOf("#"));
        window.history.replaceState({}, document.title, clean_uri);
    }
}
于 2017-02-07T08:05:24.823 回答
14

这也将删除尾随哈希。例如:http ://test.com/123#abc -> http://test.com/123

if(window.history.pushState) {
    window.history.pushState('', '/', window.location.pathname)
} else {
    window.location.hash = '';
}
于 2016-08-17T18:05:17.757 回答
6

下面的呢?

window.location.hash=' '

请注意,我将哈希设置为单个空格而不是空字符串。


将散列设置为无效锚也不会导致刷新。如,

window.location.hash='invalidtag'

但是,我发现上述解决方案具有误导性。这似乎表明在给定位置上有一个具有给定名称的锚点,尽管没有。同时,使用空字符串会导致页面移动到顶部,这有时是不可接受的。使用空格还可以确保每当复制 URL 并添加书签并再次访问时,页面通常会位于顶部,并且空格将被忽略。

而且,嘿,这是我在 StackOverflow 上的第一个答案。希望有人觉得它有用并且符合社区标准。

于 2015-02-07T17:58:45.340 回答
6
const url = new URL(window.location);
url.hash = '';
history.replaceState(null, document.title, url);
于 2018-04-02T06:50:19.967 回答
3
<script type="text/javascript">
var uri = window.location.toString();
if (uri.indexOf("?") > 0) {
    var clean_uri = uri.substring(0, uri.indexOf("?"));
    window.history.replaceState({}, document.title, clean_uri);
}
</script>

将此代码放在头部

于 2016-01-07T16:58:23.297 回答
3
function removeLocationHash(){
    var noHashURL = window.location.href.replace(/#.*$/, '');
    window.history.replaceState('', document.title, noHashURL) 
}

window.addEventListener("load", function(){
    removeLocationHash();
});
于 2020-02-03T07:42:12.277 回答
2

我觉得这样会更安全

if (window.history) {
    window.history.pushState('', document.title, window.location.href.replace(window.location.hash, ''));
} else {
    window.location.hash = '';
}
于 2020-01-22T17:02:33.197 回答
1
$(window).on('hashchange', function (e) {
    history.replaceState('', document.title, e.oldURL);
});
于 2019-06-05T13:48:44.007 回答
0

这是使用 href 更改位置并在不滚动的情况下清除哈希的另一种解决方案。

这里解释了神奇的解决方案。规格在这里

const hash = window.location.hash;
history.scrollRestoration = 'manual';
window.location.href = hash;    
history.pushState('', document.title, window.location.pathname);

注意:提议的 API 现在是 WhatWG HTML 生活标准的一部分

于 2017-11-29T14:44:16.840 回答
0

建立上面给出的答案之一,使用这个:

var scrollV, scrollH
var loc = window.location;
scrollV = document.body.scrollTop;
scrollH = document.body.scrollLeft;
if ("pushState" in history) {
    history.pushState("", document.title, loc.pathname + loc.search);

    // Restore the scroll offset
    document.body.scrollTop = scrollV;
    document.body.scrollLeft = scrollH;

} else {
    loc.hash = "";

    // Restore the scroll offset
    document.body.scrollTop = scrollV;
    document.body.scrollLeft = scrollH;
}
于 2021-05-17T07:41:30.130 回答
-1

尝试以下操作:

window.history.back(1);
于 2013-07-13T10:10:44.497 回答
-4

您可以将 hash 替换为 null

var urlWithoutHash = document.location.href.replace(location.hash , "" );
于 2013-09-27T06:04:38.517 回答