我需要将div2滚动到200px偏移量的顶部。如何将200px添加到下面的脚本。请帮忙
$(document).ready(function (){
$("#click").click(function (){
$('html, body').animate({
scrollTop: $("#div2").offset().top
}, 2000);
});
});