可能重复:
使用 jquery 从整数中减去
我想从 div 的偏移量中减去 50。我的代码是这样的。
if (scroll) {
$('html, body').animate({"scrollTop": $(scroll).offset().top - 50});
$(scroll).css('color', 'blue');
$(scroll).mouseleave(function() {
$(this).css('color', 'black');
});
}
但这行不通。有人能帮我吗 ?