function CPos(x, y) { this.x = x; this.y = y; } //獲取控件的位置 function GetObjPos(ATarget) { var target = ATarget; var pos = new CPos(target.offsetLeft, target.offsetTop);
var target = target.offsetParent; while (target) { pos.x += target.offsetLeft; pos.y += target.offsetTop;