DIV中的滚动高度

时间:2012-03-13 17:19:37

标签: javascript jquery scroll

enter image description here

如图所示,我如何找到相对于DIV的滚动高度而不是窗口

  

修改

上传另一张图片以获得更清晰

2 个答案:

答案 0 :(得分:0)

您应该使用.position()代替.offset()。这是相对于父母的偏移量。 (当然是jQuery)

documentation

我实际上不确定这是不是你要找的......

答案 1 :(得分:0)

可能会尝试查找div位置,而不是在document.ready

中设置您的身体
 var position = $("divid").offset().top;
 $("html, body").animate({ scrollTop: position },'slow');

提供帮助