80437916 2019-07-01
/** * 销毁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(); }