jQuery 滚动到正确的位置

jQuery scroll to scroll correct position

我们使用一些 jQuery 使我们的导航从页面上的某个点开始变粘,并向页面上的部分添加活动 class。 但是当我们点击锚点 URL 时,它不会滚动到正确的位置。 它滚动到最下方,而不是正确的位置。

我在这里复制了完整的代码:http://jsfiddle.net/yb8kksxq/

我们用这个jQuery:

 $(window).scroll(function(){
  var sticky = $('.menu-header-product'),
      scroll = $(window).scrollTop();

  if (scroll >= 50) sticky.addClass('sticky');
  else sticky.removeClass('sticky');
});
$(window).scroll(function(){
  var sticky = $('.content'),
      scroll = $(window).scrollTop();

  if (scroll >= 50) sticky.addClass('sticky');
  else sticky.removeClass('sticky');
});
    $(document).ready(function () {
        $(document).on("scroll", onScroll);

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

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

            var target = this.hash;
            $target = $(target);
            $('html, body').stop().animate({
                'scrollTop': $target.offset().top+2
            }, 500, 'swing', function () {
                window.location.hash = target;
                $(document).on("scroll", onScroll);
            });
        });
    });

    function onScroll(event){
        var scrollPosition = $(document).scrollTop();
        $('nav a').each(function () {
            var currentLink = $(this);
            var refElement = $(currentLink.attr("href"));
            if (refElement.position().top <= scrollPosition && refElement.position().top + refElement.height() > scrollPosition) {
                $('nav ul li a').removeClass("active");
                currentLink.addClass("active");
            }
            else{
                currentLink.removeClass("active");
            }
        });
    }

我们该如何解决这个问题?

Sdghasemi 是正确的解决方案--

your page has a fixed menu header which appears on scroll.
just subtract the height in your js

**change on line 30 of your js code**

$('html, body').stop().animate({
  'scrollTop': $target.offset().top-130 /**just subtract the height of the fixed html part */
 }, 500, 'swing', function () {
    window.location.hash = target;
    $(document).on("scroll", onScroll);
});