2011-12-11 66 views

回答

3

你的代碼是錯誤的。 jQuery的偏移量是相對做文檔的。將您的javascript更改爲:

$(document).ready(function(){ 
    $('#child').click(function(){ 
     alert($(this).offset().top); 
    }); 
}); 
0

您的示例不使用.offset()...它使用DOM元素的offsetTop。我將changed the example設置爲.offset(),它與預期的文檔相關。