为什么这个滚动脚本不能平滑滚动但跳转到div?

时间:2017-01-13 05:09:39

标签: javascript jquery html css

我有这个代码,只要点击一个标签,就可以平滑滚动到页面上的一个锚点。但是,此代码不能平滑滚动,而是跳转到div。

$('a[href*="#"]:not([href="#"])').click(function() {
        $('html, body').animate({
            scrollTop: $($(this).attr('href')).offset().top
        }, 500);
        return false;
    });

0 个答案:

没有答案