本文介绍了如何使用jQuery找到元素的绝对位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法使用jQuery找到元素的绝对位置,即相对于窗口的开始?
Is there a way of finding the absolute position of an element, i.e. relative to the start of the window, using jQuery?
推荐答案
将将元素的偏移位置作为简单对象返回,例如:
.offset()
will return the offset position of an element as a simple object, eg:
var position = $(element).offset(); // position = { left: 42, top: 567 }
您可以使用此返回值来定位同一地点的其他元素:
You can use this return value to position other elements at the same spot:
$(anotherElement).css(position)
这篇关于如何使用jQuery找到元素的绝对位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!