Home > Article > Web Front-end > Introduction to the use of $(document).ready() in jQuery
The first thing to learnjQuery is: if you want an event to run on your page, you must do it in $(document) Call this event in .ready()
The first thing to learn jQuery is: if you want an event to run on your page, you must call this in $(document).ready() event. All elements or events included in $(document).ready() will be loaded immediately after the DOM has finished loading, and before the page content is loaded.
If you want an event to work on your page, you should call it inside the $(document).ready() function. Everything inside it will load as soon as theDOM is loaded and before the page contents are loaded.
The code is as follows:
$(document).ready(function() {
// put all your jQuery goodness in here.
});
There are many ways to ensure that events work properly on the page, and $(document).ready() has more advantages than other methods. First, you don't have to put any "behavioral" markup on your HTML. In addition, you can write JavaScript/jQuery into an independent js file, which is easy to maintain and ensures the isolation of js and page content. If you are more careful when browsing the web, you will often see this situation: when you hover the mouse over a connection, sometimes a message like "javascript:void()" will be displayed in the status bar. This is what happens when you put an event directly inside the tag.
In some pages using traditional JavaScript, you will see the "onload" attribute in the
The above is the detailed content of Introduction to the use of $(document).ready() in jQuery. For more information, please follow other related articles on the PHP Chinese website!