chrome不工作.offset()。顶部

时间:2012-08-03 10:39:15

标签: jquery google-chrome offset

不能使用chrome .... element.offset()。top 任何建议

$(window).load(function() {

  $(".scroll-box").scroll(function(){
    $('#document_activity .doc-draft.item.parent').each(function(i) {
      $movingLableTop = [];
      $movingLableHeight = [];
      $fixedLableTop = $('#fixed_version').find('.version').offset().top;
      $movingLableTop.push($(this).offset().top);
      $movingLableHeight.push($(this).height());
      if ($fixedLableTop > ($movingLableTop + $movingLableHeight)){
        $('#fixed_version').find('.version').html($(this).find('.version').html());
      }
    });
  });

});

很多人都提到chrome没有得到offset()

的正确值

1 个答案:

答案 0 :(得分:0)

它的修复现在正在运作

而不是这个 $(本).offset()。顶部

使用

$(本).POSITION()。顶部