`
sphsyv23
  • 浏览: 83867 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

让easyui的panel关闭时回收内存

阅读更多

/**
 * @author 孙宇
 * 
 * @requires jQuery,EasyUI
 * 
 * panel关闭时回收内存
 */
$.fn.panel.defaults.onBeforeDestroy = function() {
	var frame = $('iframe', this);
	try {
		if (frame.length > 0) {
			frame[0].contentWindow.document.write('');
			frame[0].contentWindow.close();
			frame.remove();
			if ($.browser.msie) {
				CollectGarbage();
			}
		}
	} catch (e) {
	}
};
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics