Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery offset() 方法

❮ jQuery HTML/CSS 方法

示例

返回 <p> 元素的偏移坐标

$("button").click(function(){
  var x = $("p").offset();
  alert("Top: " + x.top + " Left: " + x.left);
});
亲自试一试 »

定义和用法

offset() 方法设置或返回所选元素相对于文档的偏移坐标。

当用于返回偏移量时
此方法返回第一个匹配元素的偏移坐标。它返回一个包含两个属性的对象;以像素为单位的顶部和左侧位置。

当用于设置偏移量时
此方法设置所有匹配元素的偏移坐标。


语法

返回偏移坐标

$(选择器).offset()

设置偏移坐标

$(选择器).offset({top:,left:})

使用函数设置偏移坐标

$(选择器).offset(function(索引,当前偏移量))

参数 描述
{top:,left:} 设置偏移量时必需。以像素为单位指定顶部和左侧坐标。

可能的值
  • 名称/值对,如 {top:100,left:100}
  • 一个包含 top 和 left 属性的对象 (示例)
function(索引,当前偏移量) 可选。指定一个返回包含顶部和左侧坐标的对象的函数
  • 索引 - 返回元素在集合中的索引位置
  • 当前偏移量 - 返回所选元素的当前坐标

亲自试一试 - 示例

设置偏移坐标
如何设置元素的偏移坐标。

使用函数设置偏移坐标
使用函数设置元素的偏移坐标。

使用对象设置元素的偏移坐标
如何使用新对象设置元素的偏移坐标。

使用另一个元素的偏移坐标设置元素的偏移坐标
如何使用现有元素的偏移坐标设置元素的偏移坐标。


❮ jQuery HTML/CSS 方法

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.