$(“html,body”).animate({scrollTop:$(‘ul#cart-items li’).offset().top});
如何更改此选项以滚动到最后一个< li>在无序列表中,但也从顶部偏移约30px?
$("html,body").animate({scrollTop: $('ul#cart-items li:last').offset().top - 30});
但是 – 或者最后30点达到你想要的偏移量?