我正在尝试如何向上或向下滚动表格并且这个片段有效
$('.scroll-down').click(function() {
$('.tableholder').animate({
scrollTop: $('.tableholder').scrollTop() + 10
});
});
$('.scroll-top').click(function() {
$('.tableholder').animate({
scrollTop: $('.tableholder').scrollTop() - 10
});
});
这是小提琴http://jsfiddle.net/thiswolf/45gLR/3/
可以给出什么解释来解释为什么 scrollTop 以这种方式工作?