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
Preface Since errors always occur, record the pro...
<br />In the first section of this series, w...
1. CSS Miscellaneous Icons There are three ways t...
MySQL official website zip file download link htt...
There are currently three ways to display the cen...
As a required course for front-end developers, CS...
Sometimes we want to execute a command in a conta...
And, many times, maintenance requires your website...
Server matching logic When Nginx decides which se...
Table of contents What is Docker Client-side Dock...
Table of contents Lazy Loading CSS styles: HTML p...
This article example shares the specific code of ...
When we are writing projects, we often encounter ...
Generally, after there is a menu on the left, the...
Pull the image root@EricZhou-MateBookProX: docker...