Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有任何原型等效于 JQuery 的 .offset() 函数?
谢谢你的帮助。
jQuery 的偏移量(元素相对于文档的位置)映射到Element.cumulativeOffset
类似地,jQuery 的位置(元素相对于父偏移的位置)映射到Element.positionedOffset
如果您正在寻找相对于文档的偏移量,请选择:
Element.cumulativeOffset
但是,如果您正在寻找相对于元素的偏移量,请选择:
Element.Offset.
Element.Offset