标签: javascript jquery scroll
如图所示,我如何找到相对于DIV的滚动高度而不是窗口
修改
上传另一张图片以获得更清晰
答案 0 :(得分:0)
您应该使用.position()代替.offset()。这是相对于父母的偏移量。 (当然是jQuery)
.position()
.offset()
documentation
我实际上不确定这是不是你要找的......
答案 1 :(得分:0)
可能会尝试查找div位置,而不是在document.ready
div
document.ready
var position = $("divid").offset().top; $("html, body").animate({ scrollTop: position },'slow');
提供帮助