WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 jQuery 获取元素相对于文档的位置

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery offset()方法

使用 jQuery offset() 方法,您可以轻松找到元素相对于文档的位置。 它仅适用于可见元素。 这意味着,您可以使用 visibility: hidden; 获取元素的位置,但不能使用 display: none;

让我们看一下以下示例以了解其实际工作原理:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Find Element's Position Relative to the Document</title>
<style>
    #box{
        width:150px;
        height:100px;
        background: orange;
        margin: 150px 100px;
    }
</style>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
    $(document).ready(function() {
        $("button").click(function(){
            var offset = $("#box").offset();
            alert("Current position of the box is: (left: " + offset.left + ", top: " + offset.top + ")");
        });
    });
</script>
</head>
<body>
    <button type="button">Get Box Position</button>
    <p><strong>Note:</strong> Play with the value of margin property to see how the jQuery offest() method works.</p>
    <div id="box"></div>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements