我們可以用這樣得到抵消元素的頂部:如何獲得offsetParent div的頂部和左側屬性?
$(selector).offset().top;
但我們如何能得到父母抵消div的頂部值?
我試過這樣但不起作用?
$(selector).offsetParent().top;
我們可以用這樣得到抵消元素的頂部:如何獲得offsetParent div的頂部和左側屬性?
$(selector).offset().top;
但我們如何能得到父母抵消div的頂部值?
我試過這樣但不起作用?
$(selector).offsetParent().top;
嘗試使用parent()一樣,
$(selector).parent().offset().top;
讀Get position/offset of element relative to a parent container?
不要忘記你必須去獲得補償一路到最頂層的父。如果你有足夠的嵌套內容,可能值得編寫一個遞歸函數來獲得它。
'$(selector).parent()。offset()。top;' – Abhitalks