相关文章推荐
飘逸的人字拖  ·  insert into table ...·  1 年前    · 
} else { if (element.length>0 ){ $( "html,body").animate({scrollTop:$(element).offset().top-200 },speed); // 然后触发某个事件时调用这个函数。 // scrollTo('#comment',300); 写评论功能的时候,滚动到文本域的位置。#comment是文本域ID属性。

offset() 返回或设置匹配元素相对于文档的偏移。上述代码中  -200  的意思是是文本域再向下移动200px,实现此功能主要是scrollTop配合animate动画。

//回答顶部
$('html,body').animate({scrollTop: 0},500); //距离body顶部为0,scrollTop

参考: scrollTop讲解

$("html,body")是什么意思呢?暂时没明白。