offset()
优质
小牛编辑
130浏览
2023-12-01
描述 (Description)
offset( )方法获取第一个匹配元素相对于文档的当前偏移offset( )以像素为单位)。
返回的对象包含两个Float属性,top和left。 浏览器通常将这些值舍入到最接近的整数像素以进行实际定位。 该方法仅适用于可见元素。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>selector</i>.offset( )
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
NA
例子 (Example)
以下是一个简单的例子,简单地显示了这种方法的用法 -
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("div").click(function () {
var offset = $(this).offset();
$("#lresult").html("left offset: <span>" + offset.left + "</span>.");
$("#tresult").html("top offset: <span>" + offset.top + "</span>.");
});
});
</script>
<style>
div { width:60px; height:60px; margin:5px; float:left; }
</style>
</head>
<body>
<p>Click on any square:</p>
<span id = "lresult"> </span>
<span id = "tresult"> </span>
<div style = "background-color:blue;"></div>
<div style = "background-color:pink;"></div>
<div style = "background-color:#123456;"></div>
<div style = "background-color:#f11;"></div>
</body>
</html>