當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery offsetParent()用法及代碼示例


offsetParent() 方法是 jQuery 中的內置方法,用於查找 DOM 樹中第一個定位的父元素。

用法:

$(selector).offsetParent()

參數:該方法不包含任何參數。

返回值:此方法返回第一個定位的父元素。

下麵的示例說明了 jQuery 中的 offsetParent() 方法:

例子:

html


<!DOCTYPE html>
<html>
<head>
    <title>The offsetParent Method</title>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <!-- jQuery code to show the working of this method -->
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("p").offsetParent().css("background-color", "green");
            });
        });
    </script>
    <style>
        #d1 {
            border: 1px solid black;
            width: 70%;
            position: absolute;
            left: 10px;
            top: 50px
        }
        #d2 {
            border: 1px solid black;
            margin: 50px;
            background-color: lightblue;
            text-align: center;
        }
        p {
            padding-left: 80px;
            font-weight: bold;
        }
    </style>
</head>
<body>
    <button>Submit</button>
    <div id="d1">
        <div id="d2">
            <!-- click on this paragraph -->
            <p>Welcome to GeeksforGeeks!</p>
        </div>
    </div>
</body>
</html>

輸出:

jquery-51

相關文章:



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery offsetParent() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。