(1) 使用iframe时 ,确保公用一个iframe
(2) ie下添加代码
let mainframe = document.getElementById("mainFrame");
this.src = "about:blank"; //src地址清空
mainframe.contentWindow.document.write(''); // 清空iframe内容
mainframe.contentWindow.close();
CollectGarbage();
(1) 使用iframe时 ,确保公用一个iframe
(2) ie下添加代码
let mainframe = document.getElementById("mainFrame");
this.src = "about:blank"; //src地址清空
mainframe.contentWindow.document.write(''); // 清空iframe内容
mainframe.contentWindow.close();
CollectGarbage();