在上次把TreeView的事件支持实现后,整个TreeView的主体也就完成了。但是由于在UI元素的管理上,使用了Script类对象和DOM对象间的环状链表引用,所以还必须在页面退出时作一些清理工作,也就是为每个类都实现一个Dispose方法。
我们的TreeView一共使用了3个类,Tree、TreeNodeBase和TreeNode。Script类对象和DOM对象间的环状链表引用是在TreeNodeBase中产生的,所以我们在TreeNodeBase的Dispose中做清理工作,代码如下:
TreeNodeBase.prototype.Dispose = function()
{
if ( this.m_Element )
{
this.m_Element.clearAttributes();
this.m_Element.removeNode(true);
this.m_Element = null;
}
for ( var key in this )
delete this[key];
};
本来清理完了Script类对象和DOM对象间的环状链表引用后,IE的内存占用似乎是可以被释放的,不过后来发现还是有Memory
Leak现象,并且bindows的组件类在Dispose的时候,把事件和一些对象引用也都清空掉了。所以我们也把TreeNode和Tree中的引用清理掉,TreeNode代码如下:
TreeNode.prototype.Dispose = function()
if ( this.m_Element )
{
var tr = this.m_Element;
if ( tr.Content )
{
var tdContent = tr.Content;
tdContent.onmousedown = null;
tdContent.onmouseover = null;
tdContent.onmouseout = null;
tdContent.onmousemove = null;
tdContent.oncontextmenu = null;
}
tr.OpIcon.onclick = null;
if ( tr.CheckBox )
tr.CheckBox.onclick = null;
}
if ( this.m_ChildTree )
this.m_ChildTree.Dispose();
this.base.Dispose.Call(this);
Tree类的Dispose方法,主要是为了清除对象TreeView对象和其Container之间的循环引用,代码为:
Tree.prototype.Dispose = function()
var tbl = this.m_Element;
tbl.onselectstart = null;
this.m_Element.clearAttributes();
this.m_Element = null;
}
if ( this.m_Container )
var elmt = this.m_Container;
elmt.clearAttributes();
elmt.onkeydown = '';
this.m_Container = null;
for ( var i=0 ; i < this.m_Count ; ++i )
var node = this.m_Nodes[i];
node.Dispose();
delete this.m_Nodes[i];
for ( var key in this )
delete this[key];
The End.
本文转自博客园鸟食轩的博客,原文链接:http://www.cnblogs.com/birdshome/,如需转载请自行联系原博主。