我在此菜单上使用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();
        });


有人知道那里发生了什么吗?

最佳答案

您的滚动顶部不起作用,因为您必须添加“ px”:

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

            e.preventDefault();
        });

10-02 21:02