不能使用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()
的正确值答案 0 :(得分:0)
它的修复现在正在运作
而不是这个 $(本).offset()。顶部
使用
$(本).POSITION()。顶部