終于搬家了
今天從JAVAEYE上我的BLOG搬遷到了BLOGJAVA上,呵呵,我這里只發表原創的文章。呵呵,我要成為J2EE江湖當中,武藝最高強的人,像胡斐一樣,也像老頑童一樣。不過,我一來到BLOGJAVA上,就吸引了這么眼球,看來是一件好事。
posted @ 2005-12-19 11:31 @家軍 閱讀(561) | 評論 (5) | 編輯 收藏
直覺我的J2EE應用生涯,打造我心中的一把利劍。
posted @ 2005-12-19 11:31 @家軍 閱讀(561) | 評論 (5) | 編輯 收藏
posted @ 2005-12-19 11:27 @家軍 閱讀(444) | 評論 (1) | 編輯 收藏
posted @ 2005-12-19 11:26 @家軍 閱讀(1008) | 評論 (0) | 編輯 收藏
posted @ 2005-12-19 11:24 @家軍 閱讀(714) | 評論 (0) | 編輯 收藏
posted @ 2005-12-19 11:23 @家軍 閱讀(702) | 評論 (0) | 編輯 收藏
posted @ 2005-12-19 11:21 @家軍 閱讀(958) | 評論 (0) | 編輯 收藏
posted @ 2005-12-19 11:20 @家軍 閱讀(571) | 評論 (0) | 編輯 收藏
java代碼: |
// 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; }; |
posted @ 2005-12-19 11:17 @家軍 閱讀(876) | 評論 (0) | 編輯 收藏
posted @ 2005-12-16 18:14 @家軍 閱讀(4459) | 評論 (5) | 編輯 收藏
posted @ 2005-12-16 18:13 @家軍 閱讀(660) | 評論 (1) | 編輯 收藏