$("#justfortest").click(function(){
       alert( $("#mydata_records").scrollTop());       $("#mydata_records").find(".mydata_records_record").each(function(i){
          
           alert($(this).position().top);
           
       });
       
   });
为什么我alert出的值都是一样的呀?????????不明白了,我用的是chrome  应该没有什么关系呀???而且 我用.offset().top也是和上面的一样 好像全部匹配的都是第一个????????谢谢大家。