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


JQuery ready()用法及代碼示例


jQueryready()方法有助於加載整個頁麵,然後執行其餘代碼。該方法指定 DOM 完全加載時要執行的函數。

用法:

$(document).ready(function)

參數:該方法接受單個參數函數這是強製性的。它用於指定加載文檔後要運行的函數。

返回值:該方法在執行ready()方法後返回文檔。

示例 1:此示例說明了 jQuery 中的ready() 方法。

HTML


<!DOCTYpe html>
<html>
<head>
    <title>The ready 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").css("color", "green");
                $("p").css("font-size", "40px");
                $("p").css("font-weight", "bold")
            });
        });
    </script>
    <style>
        div {
            text-align: center;
            width: 60%;
            min-height: 100px;
            padding: 10px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <div>
        <p>Welcome to</p>
        <p>GeeksforGeeks!</p>
        <!-- click on this button -->
        <button>Click Here!</button>
    </div>
</body>
</html>

輸出:

示例 2:在此示例中,我們將使用 ready() 方法對文本進行動畫處理。

HTML


<!DOCTYpe html>
<html>
<head>
    <title>The ready 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").animate({ fontSize: "+=14px" });
            });
        });
    </script>
    <style>
        div {
            text-align: center;
            width: 60%;
            min-height: 100px;
            padding: 10px;
            border: 2px solid green;
        }
    </style>
</head>
<body>
    <div>
        <p>Welcome to</p>
        <p>GeeksforGeeks!</p>
        <!-- click on this button -->
        <button>Click Here!</button>
    </div>
</body>
</html>

輸出:



相關用法


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