我正在尝试获取top
位置相对的 div 元素。所以结构类似于:
<div class="head"></div>
<div class="main"></div>
<div class="foot"></div>
div { position : relative; }
现在我尝试了:
$(".foot").css("top") => auto
$(".foot").offset().top => This gives value but that value is
not matching the current top position of the foot div
我在这里缺少什么?