


Today's web applications are becoming more and more complex and need to respond to various user-triggered events. Therefore, it is inevitable to add event listening functions to the DOM elements on our HTML pages.
We know There are three ways to bind event listening functions to DOM elements:
1: Page html:
2: Page html:
Javascript:
document.getElementById(" btn").onclick = test;
3: Page html:
Javascript:
document.getElementById(“btn”).atachEvent(“onclick”,test); //ie
Everyone knows the functional effects and differences of these three methods, so I won’t go into details here. However, these three methods have very different effects on page rendering speed and resource consumption.
The html code behind the text is a demo page. You can open it with IE browser and check the running effect of the page by annotating different code segments.
You can see that the first method is the least efficient. , with the increase of page nodes, the page rendering time increases sharply. When running under IE7, it is about 670ms;
The second method is obviously better, and under IE7, it is about 250ms
The third method is the best. The fastest method is also the recommended standard writing method for web front-end development. Under IE7, it is about 188ms;
Then we remove the logic of event binding and find that the time for only rendering DOM elements without binding events is only 125ms, and the visible events The time consumption of binding is still very large, especially the first method, which is Dom Level 0 Event, is the most time-consuming.
In addition, when you run each piece of code, you might as well open the task manager, Find the process corresponding to the browser and check the CPU consumption and memory usage when the code is running.
We can see that the Dom Level 0 Event consumes significantly more CPU.
Memory consumption analysis :
Reopen the browser, the memory usage of the blank page is about 37M, the virtual memory is 28M, after the page is rendered:
1 The memory usage is 54M, the virtual memory is 41M
2 The memory usage is 44M, the virtual memory is 31M
3 The memory usage is 44M, the virtual memory is 31M
It can be seen that the memory consumption of Dom Level 0 Event is far beyond other methods.
Why is Dom Level 0 Event like this? What about consuming system resources? The consumption of CPU and memory far exceeds other methods. Let’s do a simple analysis.
In order to facilitate analysis, we might as well modify our code

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
