var target = $('#div_target');
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 1);
var target = $('#div_target');
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 1800);
我正在使用此代码为滚动动画。 使用1毫秒有效,但放置1800毫秒无效。 它超出了要素。为什么!?谢谢!