如何使用 jQuery 获取元素相对于父元素的位置
答案:使用jQuery position()
方法
您可以使用 jQuery position()
方法轻松找到元素相对于偏移父元素的位置。 它仅适用于可见元素。 这意味着,您可以使用 visibility: hidden;
获取元素的位置,但不能使用 display: none;
。
让我们试试下面的例子来了解它的基本工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 查找元素相对于父元素的位置</title>
<style>
#box{
width:150px;
height:100px;
background: orange;
}
.container{
margin: 20px;
padding: 30px;
border: 2px solid #666;
position: relative;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function() {
$("button").click(function(){
var position = $("#box").position();
alert("Current position of the box is: (left: " + position.left + ", top: " + position.top + ")");
});
});
</script>
</head>
<body>
<div class="container">
<button type="button">Get Box Position</button>
<p><strong>Note:</strong> Play with the value of container's padding property or insert more content inside container to see how the jQuery position() method works.</p>
<div id="box"></div>
</div>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: