原型等效于 JQuery 的 offset()
我想知道是否有相当于 JQuery 的 .offset() 函数的原型?
感谢您的帮助。
I would like to know if there is any prototype equivalent to the JQuery's .offset() function?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jQuery 的偏移量(元素相对于文档的位置)映射到 Element.cumulativeOffset
类似地, jQuery 的位置(相对于偏移量父级的元素位置)映射到 元素。定位偏移
jQuery's offset (element position relative to document) maps to Element.cumulativeOffset
similarly, jQuery's position (element position relative to offset parent) maps to Element.positionedOffset
如果您正在寻找相对于文档的偏移量,请查找:
Element.cumulativeOffset
如果您正在寻找相对于元素的偏移量,请查找:
Element.Offset
。If you are looking for offset relative to document, go for:
Element.cumulativeOffset
If you are looking for offset relative to an element however, go for:
Element.Offset
.