55

我有以下代码:

$('ul.questions li a').click(function(event) {
    $('.tab').hide();
    $($(this).attr('href')).fadeIn('slow');
    event.preventDefault();
    window.location.hash = $(this).attr('href');
});

这只是根据您单击的时间淡入一个 div,但我希望在您单击时更改页面 URL 哈希标记,以便人们可以复制和添加书签。目前,当哈希标签发生变化时,这有效地重新加载了页面。

是否可以更改哈希标签而不重新加载页面以防止跳转效果?

4

5 回答 5

83

这对我有用

$('ul.questions li a').click(function(event) {
    event.preventDefault();
    $('.tab').hide();
    window.location.hash = this.hash;
    $($(this).attr('href')).fadeIn('slow');
});

在此处查看http://jsbin.com/edicu以获取具有几乎相同代码的演示

于 2009-12-21T11:47:33.380 回答
4

您可以尝试捕获 onload 事件。并停止依赖于某些标志的传播。

var changeHash = false;

$('ul.questions li a').click(function(event) {
    var $this = $(this)
    $('.tab').hide();  //you can improve the speed of this selector.
    $($this.attr('href')).fadeIn('slow');
    StopEvent(event);  //notice I've changed this
    changeHash = true;
    window.location.hash = $this.attr('href');
});

$(window).onload(function(event){
    if (changeHash){
        changeHash = false;
        StopEvent(event);
    }
}

function StopEvent(event){
    event.preventDefault();
    event.stopPropagation();
    if ($.browser.msie) {
        event.originalEvent.keyCode = 0;
        event.originalEvent.cancelBubble = true;
        event.originalEvent.returnValue = false;
    }
}

没有测试,所以不能说它是否有效

于 2009-12-21T09:33:31.793 回答
2

接受的答案对我不起作用,因为我的页面在点击时略微跳跃,弄乱了我的滚动动画。

window.history.replaceState我决定使用而不是使用该window.location.hash方法来更新整个 URL 。从而规避浏览器触发的 hashChange 事件。

// Only fire when URL has anchor
$('a[href*="#"]:not([href="#"])').on('click', function(event) {

    // Prevent default anchor handling (which causes the page-jumping)
    event.preventDefault();

    if ( location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname ) {
        var target = $(this.hash);
        target = target.length ? target : $('[name=' + this.hash.slice(1) +']');

        if ( target.length ) {    
            // Smooth scrolling to anchor
            $('html, body').animate({
                scrollTop: target.offset().top
            }, 1000);

            // Update URL
            window.history.replaceState("", document.title, window.location.href.replace(location.hash, "") + this.hash);
        }
    }
});
于 2017-03-29T23:59:20.637 回答
1

您也可以将哈希直接设置为 URL。

window.location.hash = "YourHash";

结果:http://url#YourHash

于 2019-09-25T10:40:36.813 回答
0

您可以简单地为其分配一个新值,如下所示,

window.location.hash
于 2018-05-03T12:00:28.137 回答