search
HomeWeb Front-endJS TutorialJavaScript techniques for determining when the DOM is loaded_javascript techniques

One difficulty with working with HTML DOM documents is that JavaScript can be executed before the DOM is fully loaded, which can cause a lot of potential problems for your code. The rendering and operation sequence of the browser is roughly as follows:

HTML parsing completed
External scripts and style sheets loaded
Scripts are parsed and executed within the document
HTML DOM is fully constructed
Images and external content loading
Web page completes loading

Scripts in the head of the web page and loaded from external files will be executed before the HTML is actually constructed. As mentioned before, this is a critical issue because the scripts executed in these two places cannot access the DOM that does not yet exist. Fortunately, we have several remedies.
Currently, the most commonly used level is to completely wait for the entire page to load before performing DOM operations. This technology only needs to use the load event of the window object to bind a function, which can be triggered after the page is loaded.

Copy code The code is as follows:

addEvent(window, "load", function(){
// do something
});

The simplest operation is the slowest. In the sequential list of the loading process, you will notice that whether the page is loaded or not is completely controlled by the last step. This means that if the page has a lot of pictures, videos, etc., the user may have to log in for a while before JavaScript is executed.
Another progression can be used to listen to DOM loading status, probably the most complex (from an implementation perspective), but also the most efficient.
This technology checks whether the HTML DOM document has been loaded with the attributes necessary for execution as quickly as possible without blocking the browser loading. Here are a few key points for checking whether the HTML DOM is available:

document: You need to know whether the DOM document has been loaded. If you check quickly enough, with luck you'll see undefined.
document.getElementsByTagName and document.getElementById: Frequently use the document.getElementsByTagName and document.getElementById functions to check the document. When these functions exist, it indicates that the DOM has been loaded.
document.body: As an added bonus, checks if the element has been fully loaded. Theoretically the previous check should already be able to make a judgment, but I found that in some cases it's still not enough.
Using these checks is enough to determine whether the DOM is available ("sufficient" here means that there may be a certain millisecond time difference). This method has few flaws. Using the aforementioned checks alone, the script should run relatively well in modern browsers. However, more recently (2008?) Firefox implemented caching improvements such that the window load event can actually fire before the script can check whether the DOM is available. In order to take advantage of this, I also attached checks to the window loading event in order to achieve faster execution speed.

Finally, the domReady function collects references to all functions that need to be executed when the DOM is available. Once the DOM is considered available, these references are called and executed one by one in sequence.
Copy code The code is as follows:

// The function that monitors whether the DOM is available
function domReady(f) {
// If the DOM has been loaded, Mashan executes the function
if(domReady.done) return f();

// If we have added a function
if(domReady.timer) {
// Assume it is in the list of functions to be executed
domReady.ready.push(f);
} else {
// Bind the page after loading An event in case it completes first.
addEvent(window, "load", isDOMReady);
// Initialize the array of execution functions
domReady.ready = [f];
// Check whether the DOM is available as quickly as possible
domReady.timer = setInterval(isDOMReady, 13);
}
}

// Check whether the DOM is operational
function isDOMReady() {
// If we It can be judged that the DOM is possible, ignore
if(domReady.done) return false;

// Check whether several functions and elements are possible
if(document && document.getElementsByTagName && document.getElementById && document.body) {
// If available, we stop checking
clearInterval(domReady.timer);
domReady.timer = null;

// Execute all waiting functions
for(var i = 0; i domReady.ready[i]();
// Record that we have finished here
domReady.ready = null;
domReady.done = true;
}
}
}

Now let’s see how it is performed in an HTML document. Assume that the domReady function has been written to an external file named domready.js
Copy the code The code is as follows:



Testing DOM Loading

<script> <BR>domReady(function(){ <BR>alert("The DOM is loaded!"); <BR>// do something <BR>}); <BR></script>


Testing DOM Loading





Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP邮件检测:判断邮件是否已发送成功。PHP邮件检测:判断邮件是否已发送成功。Sep 19, 2023 am 09:16 AM

PHP邮件检测:判断邮件是否已发送成功。在开发Web应用程序时,经常需要发送电子邮件来与用户进行沟通,无论是注册确认、密码重置还是发送通知,邮件功能都是不可或缺的一部分。但是,有时候我们无法确保邮件是否真正发送成功,因此我们需要进行邮件检测以及判断邮件是否已成功发送。本文将介绍如何使用PHP来实现这个功能。一、使用SMTP服务器发送邮件首先,我们需要使用SM

使用java的File.isDirectory()函数判断文件是否存在且为目录类型使用java的File.isDirectory()函数判断文件是否存在且为目录类型Jul 24, 2023 pm 06:57 PM

使用java的File.isDirectory()函数判断文件是否存在且为目录类型在Java编程中,经常会遇到需要判断一个文件是否存在且为目录类型的情况。Java提供了File类来操作文件和目录,其中的isDirectory()函数可以帮助我们判断一个文件是否是目录类型。File.isDirectory()函数是File类中的一个方法,其作用是判断当前Fil

使用java的Character.isDigit()函数判断字符是否为数字使用java的Character.isDigit()函数判断字符是否为数字Jul 27, 2023 am 09:32 AM

使用Java的Character.isDigit()函数判断字符是否为数字字符在计算机内部以ASCII码的形式表示,每个字符都有一个对应的ASCII码。其中,数字字符0到9分别对应的ASCII码值为48到57。要判断一个字符是否为数字,可以使用Java中的Character类提供的isDigit()方法进行判断。isDigit()方法是Character类的

如何使用Double类的isInfinite()方法判断一个数是否为无穷大如何使用Double类的isInfinite()方法判断一个数是否为无穷大Jul 24, 2023 am 10:10 AM

如何使用Double类的isInfinite()方法判断一个数是否为无穷大在Java中,Double类是用来表示浮点数的包装类。该类提供了一系列方法,可以方便地对浮点数进行操作。其中,isInfinite()方法就是用来判断一个浮点数是否为无穷大的方法。无穷大是指大到超出了浮点数所能表示的范围的正无穷和负无穷。在计算机中,浮点数的最大值可以通过Double类

jQuery使用实践:判断变量是否为空的几种方式jQuery使用实践:判断变量是否为空的几种方式Feb 27, 2024 pm 04:12 PM

jQuery是一个广泛应用于Web开发中的JavaScript库,它提供了许多简洁方便的方法来操作网页元素和处理事件。在实际开发中,经常会遇到需要判断变量是否为空的情况。本文将介绍使用jQuery判断变量是否为空的几种常用方法,并附上具体的代码示例。方法一:使用if语句判断varstr="";if(str){co

Go语言中如何判断日期是否为前一天?Go语言中如何判断日期是否为前一天?Mar 24, 2024 am 10:09 AM

题目:Go语言中如何判断日期是否为前一天?在日常开发中,经常会遇到需要判断日期是否为前一天的情况。在Go语言中,我们可以通过时间计算来实现这个功能。下面将结合具体的代码示例来演示如何在Go语言中判断日期是否为前一天。首先,我们需要导入Go语言中的时间包,代码如下:import("time")接着,我们定义一个函数IsYest

如何判断jQuery元素是否具有特定属性?如何判断jQuery元素是否具有特定属性?Feb 29, 2024 am 09:03 AM

如何判断jQuery元素是否具有特定属性?在使用jQuery操作DOM元素时,经常会遇到需要判断元素是否具有某个特定属性的情况。这种情况下,我们可以借助jQuery提供的方法来轻松实现这一功能。下面将介绍两种常用的方法来判断一个jQuery元素是否具有特定属性,并附上具体的代码示例。方法一:使用attr()方法和typeof操作符//判断元素是否具有特定属

PHP中如何判断字段是否为空?PHP中如何判断字段是否为空?Mar 20, 2024 pm 03:09 PM

PHP是一种广泛应用于网站开发的脚本语言,对于开发者们来说,常常需要判断字段是否为空。在PHP中,判断字段是否为空可以通过一些简单的方法来实现。本文将介绍在PHP中如何判断字段是否为空,并提供具体的代码示例供大家参考。在PHP中,通常可以使用empty()函数或者isset()函数来判断字段是否为空。接下来我们分别介绍这两个函数的用法。使用empty()函数

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.