DOMContentLoaded EventLiterally, it fires after the DOM is loaded. Very similar to the window.onload event, but with some differences:
The next question is when the DOM is loaded. This starts with browser rendering. The process of browser displaying a web page can be described as follows: 1. Request an HTML document, and then request more img, css and other resource files based on the document; 2. Parse the document to get two things, DOM tree and CSS tree; 3. Generate render tree based on the above two trees; 4. Perform layout according to the render tree and draw related elements in it. Taking webkit as an example, its rendering process is as follows: DOMContentLoaded event triggers when: After DOM and before RENDERtree. JavaScript loading and execution will delay the triggering of the DOMContentLoaded event. JavaScript has to wait for CSS rendering to complete before loading and executing, because the browser cannot determine whether JavaScript needs DOM element information. To ensure that JavaScript has the latest information, the CSS is loaded and rendered first. Reference Documents: http://www.softwhy.com/article-9783-1.html https://www.cnblogs.com/CandyManPing/p/6635008.html https://www.cnblogs.com/caizhenbo/p/6679478.html This is the end of this article about the detailed case of JavaScript DOMContentLoaded event. For more relevant JavaScript DOMContentLoaded event content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Two methods to implement MySQL group counting and range aggregation
>>: How to expand Linux swap memory
The enctype attribute of the FORM element specifie...
After the worker process is started, it will firs...
The following introduces the commonly used head s...
Preface In the previous article Two data types in...
Precautions 1) Add interpreter at the beginning: ...
1. Introduction When we are writing a page, we so...
1. Two types of DMA mapping 1.1. Consistent DMA m...
We have many servers that are often interfered wi...
Table of contents Matlab Centroid Algorithm As a ...
Today we will talk about how to use Jenkins+power...
The cause is that the process opens a number of f...
Table of contents 1. Overview 2. Define a simple ...
Because the router at home forced to reduce the b...
Environmental requirements: IP hostname 192.168.1...
Recently, WeChat Mini Program has proposed adjust...