Home Web Front-end JS Tutorial Detailed discussion on several situations of js memory leak_javascript skills

Detailed discussion on several situations of js memory leak_javascript skills

May 16, 2016 pm 05:33 PM
js memory leak

A memory leak means that a piece of allocated memory cannot be used or recycled until the browser process ends. In C, because memory is managed manually, memory leaks are a common occurrence. Nowadays, popular languages ​​​​such as C# and Java use automatic garbage collection methods to manage memory, and almost no memory leaks occur under normal use. Browsers also use automatic garbage collection to manage memory. However, due to bugs in the browser's garbage collection method, memory leaks may occur.

1. When an element in the page is removed or replaced, if the event bound to the element has not been removed, IE will not handle it appropriately. At this time, the event must be manually removed first, otherwise There will be a memory leak.

Copy code The code is as follows:






Or use event delegation
Copy code The code is as follows:






2.
Copy code The code is as follows:

var a=document.getElementById("#xx");
var b=document.getElementById("#xxx");
a.r=b ;
b.r=a;

Copy code The code is as follows:

var a=document.getElementById("#xx");
a.r=a;

For pure ECMAScript objects, as long as no other objects refer to objects a and b, it is also That is to say, they are just references to each other, and they will still be recognized and processed by the garbage collection system. However, in Internet Explorer, if any of the objects in the circular reference are DOM nodes or ActiveX objects, the garbage collection system does not discover that the circular relationship between them is isolated from other objects in the system and frees them. Eventually they will be retained in memory until the browser is closed.
3.
Copy code The code is as follows:

var elem = document.getElementById( 'test');
elem.addEventListener('click', function() {
alert('You clicked ' elem.tagName);
});

This This code registers an anonymous function as a click event processing function of a DOM node. A DOM object elem is referenced in the function, forming a closure. This will generate a circular reference, namely: DOM-> Closure->DOM-> Closure... The DOM object will not be released before the closure is released; and the closure serves as the event handling function of the DOM object exists, so the closure will not be released before the DOM object is released. Even if the DOM object is deleted in the DOM tree, due to the existence of this circular reference, neither the DOM object nor the closure will be released. You can use the following method to avoid this memory leak
Copy the code The code is as follows:

var elem = document.getElementById('test');
elem.addEventListener('click', function() {
alert('You clicked ' this.tagName); // No Then directly reference the elem variable
});

4.
Copy the code The code is as follows :

function bindEvent()
{
var obj=document.createElement("XXX");
obj.onclick=function(){
//Even if it's a empty function
}
}

Closures can easily form circular references. If a function object that forms a closure is assigned to, say, an event handler for a DOM node, and a reference to that node is assigned to an active (or mutable) object in the scope of the function object, then there is Circular references.
DOM_Node.onevent -
It is easy to create such a circular reference, and even a brief browse through a website that contains similar circular reference code (usually found on every page of the website) can consume a lot (or even all) of the system's memory.
The solution is to define the event processing function externally and release the closure
Copy the code The code is as follows:

function bindEvent()
{
var obj=document.createElement("XXX");
obj.onclick=onclickHandler;
}
function onclickHandler(){
//do something
}

Or delete the reference to the dom in the external function that defines the event handling function (off topic, as introduced in "The Definitive Guide to JavaScript", close In the package, unused attributes in the scope can be deleted to reduce memory consumption. )
Copy code The code is as follows:

function bindEvent()
{
var obj=document.createElement("XXX");
obj.onclick=function(){
//Even if it's a empty function
}
obj=null;
}

5.
Copy code The code is as follows:

a = {p: {x: 1}};
b = a.p;
delete a.p;

After executing this code, the value of b.x is still 1. Since the deleted attribute reference still exists, in some implementations of JavaScript, memory leaks may occur due to this loose code. Therefore, when destroying an object, you need to traverse the properties and delete them one by one.
6. Automatic type boxing conversion
Don’t believe it, the following code will cause memory leaks in IE series
Copy code The code is as follows:

var s="lalala";
alert(s.length);

s itself is a string rather than an object , it has no length attribute, so when accessing length, the JS engine will automatically create a temporary String object to encapsulate s, and this object will definitely be leaked. This bug is incredible, but fortunately it is quite easy to solve. Remember to explicitly convert all value types before performing operations:
Copy code The code is as follows:

var s="lalala";
alert(new String(s).length);

7. Certain DOM operations
The unique problem of the IE series is simply appendChild to DOM elements that are not on the DOM tree; in IE7, it seems that in order to improve memory leaks, IE7 adopts an extreme solution: recycling all elements on the DOM tree when leaving the page. Don't care about anything else.
Statement of this Website
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

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

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve win11 memory leak. Analysis of the causes of win11 memory leak and various solutions. How to solve win11 memory leak. Analysis of the causes of win11 memory leak and various solutions. Feb 29, 2024 am 09:58 AM

Recently, many friends who use win11 system have found that the memory occupied by their computer desktop window is very large, and there are also serious memory leaks, which will cause other programs to run unsmoothly. To address this problem, we should How can users solve it? We open the control panel of the computer, click to select the function of the power button, and uncheck the enable fast startup option. Restarting the computer will solve the problem. There may also be a problem with the graphics card driver. Just re-download the driver. . Causes of memory leaks: Memory leaks are caused by misaligned resources in a computer program due to incorrect memory allocation. This happens when unused RAM locations are still not freed. Do not confuse memory leaks with space leaks or memory leaks

How to use JS and Baidu Maps to implement map pan function How to use JS and Baidu Maps to implement map pan function Nov 21, 2023 am 10:00 AM

How to use JS and Baidu Map to implement map pan function Baidu Map is a widely used map service platform, which is often used in web development to display geographical information, positioning and other functions. This article will introduce how to use JS and Baidu Map API to implement the map pan function, and provide specific code examples. 1. Preparation Before using Baidu Map API, you first need to apply for a developer account on Baidu Map Open Platform (http://lbsyun.baidu.com/) and create an application. Creation completed

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages ​​and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

How to create a stock candlestick chart using PHP and JS How to create a stock candlestick chart using PHP and JS Dec 17, 2023 am 08:08 AM

How to use PHP and JS to create a stock candle chart. A stock candle chart is a common technical analysis graphic in the stock market. It helps investors understand stocks more intuitively by drawing data such as the opening price, closing price, highest price and lowest price of the stock. price fluctuations. This article will teach you how to create stock candle charts using PHP and JS, with specific code examples. 1. Preparation Before starting, we need to prepare the following environment: 1. A server running PHP 2. A browser that supports HTML5 and Canvas 3

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese

How to use JS and Baidu Maps to implement map polygon drawing function How to use JS and Baidu Maps to implement map polygon drawing function Nov 21, 2023 am 10:53 AM

How to use JS and Baidu Maps to implement map polygon drawing function. In modern web development, map applications have become one of the common functions. Drawing polygons on the map can help us mark specific areas for users to view and analyze. This article will introduce how to use JS and Baidu Map API to implement map polygon drawing function, and provide specific code examples. First, we need to introduce Baidu Map API. You can use the following code to import the JavaScript of Baidu Map API in an HTML file

How to use JS and Baidu Map to implement map click event processing function How to use JS and Baidu Map to implement map click event processing function Nov 21, 2023 am 11:11 AM

Overview of how to use JS and Baidu Maps to implement map click event processing: In web development, it is often necessary to use map functions to display geographical location and geographical information. Click event processing on the map is a commonly used and important part of the map function. This article will introduce how to use JS and Baidu Map API to implement the click event processing function of the map, and give specific code examples. Steps: Import the API file of Baidu Map. First, import the file of Baidu Map API in the HTML file. This can be achieved through the following code:

See all articles