欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

现在的研究生咋就这样乜!?? prototypeCC++C#工作 

程序员文章站 2022-06-03 15:16:26
...
手下几名大将:小A、小B、小C。均为研究生。
小A默默耕耘,成绩不错。
小B情绪波动很大,小错无视,只想天上游,工作落下很多。
小C来的晚,但这是他混日子的理由,所以两周内边个DTREE的JS程序都没有认真看。绝属:虚心请教、屡教不改者。
下面说一个DTREE如何认一个目录节点打开一个URL:
方法及其简单,见dtree.js的标准函数function(pNode),第107行:

// Creates the tree structure
dTree.prototype.addNode = function(pNode); {
	var str = '';
	var n=0;
	if (this.config.inOrder); n = pNode._ai;
	for (n; n<this.aNodes.length; n++); {
		if (this.aNodes[n].pid == pNode.id); {
			var cn = this.aNodes[n];
			cn._p = pNode;
			cn._ai = n;
			this.setCS(cn);;
			if (!cn.target && this.config.target); cn.target = this.config.target;
			if (cn._hc && !cn._io && this.config.useCookies); cn._io = this.isOpen(cn.id);;
[color=red]//注意下面的语句:[/color]
			if (!this.config.folderLinks && cn._hc); cn.url = null;
[color=darkred]//如果想让一个目录节点也能够打开一个URL则把上面的这句话关掉。
//if (!this.config.folderLinks && cn._hc); cn.url = null;[/color]
			if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound); {
					cn._is = true;
					this.selectedNode = n;
					this.selectedFound = true;
			}
			str += this.node(cn, n);;
			if (cn._ls); break;
		}
	}
	return str;
};