获得div的最高位置

时间:2012-06-19 10:01:45

标签: javascript jquery css css3

我正在尝试获取位置相对的div元素的top。所以结构类似于:

         <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

我在这里缺少什么?

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

$('.foot').position().top怎么样?这为您提供了相对于父DOM元素的位置