简体   繁体   中英

how to get top and left properties of offsetParent div?

As we can get offset top of an element by using like this:

$(selector).offset().top;

But how can we get the top value of parent offset div?

I've tried like this but doesn't work?

$(selector).offsetParent().top;

Try to use parent() like,

$(selector).parent().offset().top;

Read Get position/offset of element relative to a parent container?

Um, you can use like this:

$(selector).offsetParent().offset().top;

see documentation on offsetParent

offsetParent doesn't get offset value but it just select the closest positioned parent div. You can get the offset/position by using offset and position .

demo

Don't forget you have to go get offsets all the way to the topmost parent. If you have enough nested content it's probably worth writing a recursive function to get after it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM