赞
踩
当项目以tab页签方式打开多个iframe窗口时,关闭tab页签同时也需要关闭iframe并释放内存资源(特别是 IE 浏览器)。
/** * 销毁iframe,释放iframe所占用的内存。 * @param iframe 须要销毁的iframe id */ function destroyIframe(iframeID){ var iframe = document.getElementById(iframeID); //把iframe指向空白页面,这样能够释放大部份内存。 iframe.src = 'about:blank'; try{ iframe.contentWindow.document.write(''); iframe.contentWindow.document.clear(); }catch(e){} //把iframe从页面移除 iframe.parentNode.removeChild(iframe); }
function destroyIframe(iframeID){
var iframe = $('#' + iframeID).prop('contentWindow');
$('#' + iframeID).attr('src', 'about:blank');
try{
iframe.document.write('');
iframe.document.clear();
}catch(e){}
//把iframe从页面移除
$('#' + iframeID).remove();
}
原文:https://segmentfault.com/a/1190000018791740
(END)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。