获得 <p> 元素当前的偏移:
$(".btn1").click(function(){
x=$("p").offset()
;
$("#span1").text(x.left);
$("#span2").text(x.top);
});
offset() 方法返回或设置匹配元素相对于文档的偏移(位置)。
设置所有匹配元素的偏移坐标。
$(selector).offset(value)
参数 | 描述 |
---|---|
value |
必需。规定以像素计的 top 和 left 坐标。 可能的值:
|
使用函数来设置所有匹配元素的偏移坐标。
$(selector).offset(function(index,oldoffset))
参数 | 描述 |
---|---|
function(index,oldoffset) |
规定返回被选元素新偏移坐标的函数。
|