如何使用jQuery顺利滚动到特定位置? 我可以使用jQuery使用以下代码顺利滚动到顶部:
$("#id").animate({"scrollTop": $("#id").scrollTop() + 100});
但现在我想滚动到位置,例如200页。
答案 0 :(得分:5)
试试这个:
$('html, body').animate({scrollTop: 200}, "slow"); //you can change "slow" to a number amount or remove it (default is 500)
jsfiddle:http://jsfiddle.net/UPRkm/
答案 1 :(得分:-1)
我认为你可以通过身高来做到这一点......
$("#id").animate({
height: '200px'
});