$('h2#answers-title').offset().top
h2#answers-title元素相对于document的垂直位置
$(document).scrollTop()
整个文档被上卷的高度
2者差就是$('h2#answers-title')相对于当前浏览器视图窗口的垂直位置
$('h2#answers-title').offset().top-$(document).scrollTop();
$('h2#answers-title').offset().top
h2#answers-title元素相对于document的垂直位置
$(document).scrollTop()
整个文档被上卷的高度
2者差就是$('h2#answers-title')相对于当前浏览器视图窗口的垂直位置
$('h2#answers-title').offset().top-$(document).scrollTop();