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

我尝试了以下解决方案:

window.location.hash = '';

但是,这不会从URL中删除散列符号#。


当前回答

$(window).on('hashchange', function (e) {
    history.replaceState('', document.title, e.oldURL);
});

其他回答

您可以将哈希替换为null

var urlWithoutHash = document.location.href.replace(location.hash , "" );

你可以这样做:

history.replaceState({}, document.title, window.location.href.split('#')[0]);

简单优雅:

history.replaceState({}, document.title, ".");  // replace / with . to keep url

试试下面的方法:

window.history.back(1);

现在解决这个问题已经触手可及了。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.50和IE 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()。