我想从div的偏移量中减去50。 我的代码就是这个。
if (scroll) {
$('html, body').animate({"scrollTop": $(scroll).offset().top - 50});
$(scroll).css('color', 'blue');
$(scroll).mouseleave(function() {
$(this).css('color', 'black');
});
}
但这不起作用。有人能帮助我吗?