网址不会改变滚动

时间:2016-08-28 15:00:46

标签: javascript jquery url scroll

作为一名初学者,我正试图制作一个投资组合。我添加了一些代码,以便滚动时更改url。活跃课程也取决于此。现在,虽然我的代码在localhost上工作正常,但在我上传之后它停止了工作。我真的很感激一些帮助。代码是这样的:

$(document).ready(function () {
$(document).on("scroll", onScroll);

//smoothscroll
$('a[href^="#"]').on('click', function (e) {
    e.preventDefault();
    $(document).off("scroll");

    $('a').each(function () {
        $(this).removeClass('active');
    })
    $(this).addClass('active');

    var target = this.hash,
        menu = target;
    $target = $(target);
    $('html, body').stop().animate({
        'scrollTop': $target.offset().top+2
    }, 500, 'swing', function () {
        window.location.hash = target;
        $(document).on("scroll", onScroll);
    });
});
});
$(document).bind('scroll',function(e){
$('section').each(function(){
    if (
       $(this).offset().top < window.pageYOffset + 10
     && $(this).offset().top + $(this).height() > window.pageYOffset + 10
    ) {
        window.location.hash = $(this).attr('id');
    }
});
});
function onScroll(event){
var scrollPos = $(document).scrollTop();
$('.sidebar a').each(function () {
    var currLink = $(this);
    var refElement = $(currLink.attr("href"));
    if (refElement.position().top <= scrollPos && refElement.position().top + refElement.height() > scrollPos) {
        $('.sidebar ul li a').removeClass("active");
        currLink.addClass("active");
    }
    else{
        currLink.removeClass("active");
    }
});
}

这是website

0 个答案:

没有答案