easyUI 能完全释放内存解决方法

 jQuery EasyUI Tabs关闭Tab时不能完全释放内存解决方法 EasyUI的Tabs,如果你在Tab中使用了

if (你使用的是未经压缩的EasyUI)

{

打开jquery.easyui.js,搜索“panel(“options”).tab.remove();”,在该语句后面插入下面代码,保存即可:

var frame=$(‘iframe’, tab);if(frame.length>0){frame[0].contentWindow.document.write(”);frame[0].contentWindow.close();frame.remove();if($.browser.msie){CollectGarbage();}}

}

else

{

打开jquery.easyui.min.js,搜索“panel(“options”).tab.remove();”,在该语句后面插入下面代码,保存即可:

var frame=$(‘iframe’, i);if(frame.length>0){frame[0].contentWindow.document.write(”);frame[0].contentWindow.close();frame.remove();if($.browser.msie){CollectGarbage();}}

}

这个方法没效果
我用的jquery版本是1_7_2 

转载自:https://blog.csdn.net/zhuixunhebe1/article/details/20767143

You may also like...