// Node object
function Node(id, pid, name, url, title, target, icon, iconOpen, open) { this.id = id; this.pid = pid; this.name = name; this.url = url; this.title = title; this.target = target; this.icon = icon; this.iconOpen = iconOpen; this._io = open || false; this._is = false; this._ls = false; this._hc = false; this._ai = 0; this._p; };
// Tree object
function dTree(objName) { this.config = { target 阅读全文>
发表于 @ 2008年04月27日 16:17:00|评论(loading...)|编辑