Details after setting the iframe's src to about:blank

Details after setting the iframe's src to about:blank
After setting the iframe's src to 'about:blank', the memory will not be released if it is not set to "about:blank". You must also use iframe.document.write('');
This is the only way to clear the content, but after this processing there will still be about 500-1000K of memory remaining. This is the iframe bug of IE6. Dynamically created iframes will always consume some memory.

Copy code
The code is as follows:

function clearIframe(id){
var el = document.getElementById(id),
iframe = el.contentWindow;
if(el){
el.src = 'about:blank';
try{
iframe.document.write('');
iframe.document.clear();
}catch(e){};
//The above can clear most of the memory and document node records.
//Finally, delete this iframe.
document.body.removeChild(el);
} } clearIframe('iframe_id');

<<:  Detailed explanation of the implementation of nginx process lock

>>:  Navicat for MySQL tutorial

Recommend

Teach you to connect to MySQL database using eclipse

Preface Since errors always occur, record the pro...

Improvements to the web server to improve website performance

<br />In the first section of this series, w...

CSS Pick-up Arrows, Catalogs, Icons Implementation Code

1. CSS Miscellaneous Icons There are three ways t...

MySQL Community Server 5.7.19 Installation Guide (Detailed)

MySQL official website zip file download link htt...

Achieve 3D flip effect with pure CSS3 in a few simple steps

As a required course for front-end developers, CS...

Docker executes a command in a container outside the container

Sometimes we want to execute a command in a conta...

Tips for List Building for Website Maintenance Pages

And, many times, maintenance requires your website...

In-depth understanding of the matching logic of Server and Location in Nginx

Server matching logic When Nginx decides which se...

How to build and deploy Node project with Docker

Table of contents What is Docker Client-side Dock...

JavaScript lazy loading detailed explanation

Table of contents Lazy Loading CSS styles: HTML p...

Implementing shopping cart function based on vuex

This article example shares the specific code of ...

Vue uses three methods to refresh the page

When we are writing projects, we often encounter ...

Example of building a Jenkins service with Docker

Pull the image root@EricZhou-MateBookProX: docker...