📅  最后修改于: 2020-11-26 01:16:28             🧑  作者: Mango
jQuery offset()方法用于获取第一个匹配元素的当前偏移量。
它提供了两种方法:设置或返回所选元素相对于文档的偏移坐标。
句法:
要返回偏移坐标:
$(selector).offset()
设置偏移坐标:
$(selector).offset({top:value,left:value})
要使用函数设置偏移坐标:
$(selector).offset(function(index,currentoffset))
Parameter | Description |
---|---|
{top:value,left:value} | It is a mandatory parameter while setting the offset. It specifies the top and left co-ordinates in pixels. |
Function (index,currentoffset): | It is an optional parameter. It specifies a function that returns an object containing the top and left coordinates.
|
让我们以一个示例来演示jQuery offset()方法。
You are reading this tutorial on javatpoint.com
The jQuery Example
Click on any square: