Home > Article > Web Front-end > Example of usage of offset() method in jQuery_jquery
The example in this article describes the usage of the offset() method in jQuery. Share it with everyone for your reference. The specific analysis is as follows:
This method returns or sets the offset of the matched element relative to the document object.
Grammar structure 1:
Get the relative offset of the matching element in the current document.
The returned object contains two integer properties: top and left.
This method only works on visible elements.
Example code:
The above code can pop up the offset of the sub-div relative to the document.
Grammar structure 2:
Set the coordinates of the matching element relative to the document object.
The offset() method allows us to reset the position of the element. The position of this element is relative to the document object.
If the original position style attribute of the object is static, it will be changed to relative to implement relocation.
Parameter list:
实例代码:
以上代码可以设置div相对于document的偏移量。
语法结构三:
使用函数的返回值来设置偏移坐标:
参数列表:
实例代码:
以上代码同样可以设置元素的偏移,不过值是通过函数返回。
希望本文所述对大家的jQuery程序设计有所帮助。