5

我尝试使用以下代码:

$('#divid').html(html).animate ({scrollTop:0}, "fast"); // Are slow, medium, fast parameters.

我也厌倦了使用这段代码:

$('#divid').html(html).animate ({scrollTop:0}, "500");

我的最终目标是让用户能够配置滚动速度并将该参数传递给动画函数。但是,这两种方法似乎都不会影响滚动速度。我究竟做错了什么?

4

1 回答 1

12

animate函数期望持续时间是字符串或数字。只需将其作为数字传递即可。

$('#divid').html(html).animate ({scrollTop:0}, 500);
于 2013-01-10T15:00:58.533 回答