如何在jQuery的文档准备事件中运行代码
在这篇文章中,我们将看到如何使用jQuery在页面加载时运行一段代码。为了在页面加载时运行代码,我们将使用ready()方法。这个方法有助于加载整个页面,然后执行其余的代码。这个方法指定了当DOM被完全加载时要执行的函数。
语法:
$(document).ready(function)
参数:该方法接受单参数函数,这是必须的。它用于指定在文档加载后运行的函数。
返回值:该方法在执行ready()方法后返回文档。
示例:
<!DOCTYpe html>
<html>
<head>
<title>
How to run a code on document
ready event in jQuery?
</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 () {
("body").css("text-align", "center");
("h1").css("color", "green");
("p").css("font-size", "14px");
$("p").css("font-weight", "bold");
});
</script>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>
How to run a code on document
ready event in jQuery?
</h3>
<p>GeeksforGeeks: A computer science portal</p>
</body>
</html>
输出: