当前位置: 首页 > 图文教程 > 网络编程 > Javascript > 关于javascript树形结构的编写问题

Javascript
JavaScript对象与数组参考大全(5)
JavaScript对象与数组参考大全(6)
JavaScript对象与数组参考大全(7)
JavaScript对象与数组参考大全(8)
JavaScript对象与数组参考大全(9)
JavaScript对象与数组参考大全(10)
JavaScript对象与数组参考大全(11)
JavaScript对象与数组参考大全(12)
JavaScript对象与数组参考大全(13)
JavaScript对象与数组参考大全(14)
JavaScript对象与数组参考大全(15)
javascript版的日期输入控件(1)
javascript版的日期输入控件(2)
javascript版的日期输入控件(3)
javascript版的日期输入控件(4)
javascript版的日期输入控件(5)
利用JavaScript创建功能强大的GUI(1)
利用JavaScript创建功能强大的GUI(2)
利用JavaScript创建功能强大的GUI(3)
调用IE内置打印组件完成web打印方案及例程

Javascript 中的 关于javascript树形结构的编写问题


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-10   浏览: 319 ::
收藏到网摘: n/a

function branch(id, text){
this.id = id;
this.text = text;
this.write = writeBranch;
this.add = addLeaf;
this.leaves = new Array();
this.getid=getid;
}
function getid(){return this.id;}

function addLeaf(leaf){
this.leaves[this.leaves.length] = leaf;
}

function writeBranch(){
var branchString =
'< span class="branch" ' + onClick="showBranch(this.getid())"';

//编译的时候出现了this.getid()必须要赋予一个变量的问题,也就是左值问题

求教!!!!!!!!
branchString += '>< img src="plus.gif" id="I' + this.id + '">' + this.text;
branchString += '< /span>';
branchString += '< span class="leaf" id="';
branchString += this.id + '">';
var numLeaves = this.leaves.length;
for (var j=0;j< numLeaves;j++) branchString += this.leaves[j].write();
branchString += '< /span>';
return branchString;
}