我尝试使用以下代码:
$('#divid').html(html).animate ({scrollTop:0}, "fast"); // Are slow, medium, fast parameters.
我也厌倦了使用这段代码:
$('#divid').html(html).animate ({scrollTop:0}, "500");
我的最终目标是让用户能够配置滚动速度并将该参数传递给animate功能。但是,这两种方法似乎都没有对滚动速度产生影响。我做错了什么?
答案 0 :(得分:9)
animate
函数需要持续时间为字符串或数字。只需将其作为数字传递。
$('#divid').html(html).animate ({scrollTop:0}, 500);