jQuery scrolltop - 首次使用后无法正常工作

时间:2014-11-02 00:40:06

标签: jquery uikit scrolltop

我在这个菜单上使用jQuery scrolltop功能:http://goethesternfriseure.de/index.php

问题是滚动功能仅在第一次工作。在第二次点击链接后,它会滚动到底部。

$('.sectionlink').click(function(e){
            var sectionelement = $(this).attr("rel");
            var myoffset = $('#'+sectionelement).offset().top;
            $('html, body').animate({
                scrollTop: myoffset
            }, 800);

            e.preventDefault();
        });

有谁知道那里发生了什么?

1 个答案:

答案 0 :(得分:1)

您的滚动顶部无法正常工作,因为您必须添加“px”:

$('.sectionlink').click(function(e){
            var sectionelement = $(this).attr("rel");
            var myoffset = $('#'+sectionelement).offset().top;
            $('html, body').animate({
                scrollTop: myoffset+"px"
            }, 800);

            e.preventDefault();
        });