当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。