XML to tree XML 树

139 篇文章 1 订阅
72 篇文章 0 订阅

前面发了一个 html to tree 再发一个 xml to tree

 

以下为代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
     版权所有:版权所有(C) 2009
     系统名称:树型控件
     文件名称:xml2tree.js
     作  者:DEVIN
     完成日期:2009-12-22
     压缩方式:jspacker
     主    页:http://www.chaige.net
*/
var   XML2Tree = function   (ini) {
     var   $ = document, _this = this , $$ = 'documentElement' ;
     this .getTitle = ini.getTitle || String;
     this .click = ini.click || String;
     this .box = ini.shell.big ? $.getElementById(ini.shell) : ini.shell;
     this .edit = ini.edit ? true   : false ;
     this .color = ini.color ? ini.color : '#v' ;
     this .row = ini.row ? ini.row : '' ;
     this .box.innerHTML = '<p style="margin-left:10px"><img src="/load3.gif" /> loading...<p>' ;
     this .getValue = ini.getValue || String;
     /* 异步下载Xml (chrome不能创建XMLDOC,使用Ajax构造) */
     this .xml = !!$.all ? ( new   ActiveXObject( 'Microsoft.XMLDOM' )) : ( new   XMLHttpRequest());
     this .xml.onreadystatechange = function   () {
         if   (_this.xml.readyState == 4) {
             _this.box.innerHTML = '' ;
             _this.addSub($.all ? _this.xml[$$] : _this.xml.responseXML[$$], _this.box)
         }
     }
     if   (!!$.all) {
         this .xml.async = true ; this .xml.load(ini.url)
     }
     else   {
         this .xml.open( "GET" , ini.url, true ); this .xml.send( null )
     };
}
/*
共享接口
*/
XML2Tree.prototype = {
     folder: function   (node) {
         var   UI = function   (_) { return   document.createElement(_) }
             , caption = UI( 'DT' ), shell = UI( 'DL' ), body = UI( 'DD' ), $ = XML2Tree.ini;
         shell.appendChild(caption);
         shell.appendChild(body);
         var   folderIco = this .selectIco($.folder, $.node, XML2Tree.hasChild(node));
         caption.innerHTML = ( this .edit ? '<label>'   + this .expand( this .getValue.call(node)) + '</label>'   : '' )
                 + this .getLineIco(node) + this .getHasIco(node)
                 + folderIco + '<a href="javascript://"><span>'
                 + this .getTitle.call(node) + '</span></a>' ;
         caption.mapNode = node;
         var   co = this .color;
         caption.onmouseover = function   () {
             this .style.backgroundColor = co;
         }
         caption.onmouseout = function   () {
             this .style.backgroundColor = '' ;
         }
         return   { 'shell' : shell, 'caption' : caption };
     },
     addSub: function   (node, shell) {
         if   (node == null ) return ;
         var   nodes = node.childNodes, _tree = this ;
         for   ( var   i = 0; i < nodes.length; i++) {
             if   (nodes[i].nodeType != 1) continue ; /* for FF find textNode */
             var   _ = this .folder(nodes[i]);
             shell.appendChild(_.shell);
             _.caption.onclick = function   (e) {
                 var   $ = XML2Tree, childShell = $.next( this );
                 if   ( this .mapNode) {
                     var   wrap = this .parentNode.getElementsByTagName( 'DD' )[0];
                     if   (XML2Tree.hasChild( this .mapNode)) {
                         _tree.addSub( this .mapNode, wrap);
                         $.toggle( this , true )
                     };
                     this .mapNode = null ;
                 } else   {
                     if   (!childShell) return ;
                     if   (XML2Tree.hasChild(childShell)) {
                         var   hide = childShell.style.display == 'none' ;
                         childShell.style.display = hide ? ''   : 'none' ;
                         $.toggle( this , hide);
                     };
                 };
                 e = e || window.event;
                 var   sE = e.srcElement || e.target;
                 if   (sE.tagName.toUpperCase() == 'SPAN' ) {
                     var   title = sE.innerHTML;
                     if   (!XML2Tree.hasChild(childShell)) {
                         _tree.click.call(sE, title, false ); /* 叶节点单击, this 重置为 span */
                     } else   {
                         _tree.click.call(childShell, title, true ); /* 文件夹节点单击, this 重置为 子节点的壳DD */
                     }
                 }
             };
         };
     },
     getLineIco: function   (node) {
         var   icos = [], root = node.ownerDocument;
         if   (!root) return   null ;
         node = node.parentNode;
         while   (node.parentNode != root) {
             var   $ = XML2Tree, img = this .selectIco($.ini.line, $.ini.empty, !!$.next(node));
             icos = [img].concat(icos);
             node = node.parentNode;
         }
         return   icos.join( '' );
     },
     getHasIco: function   (node) {
         var   last = !!XML2Tree.next(node), $ = XML2Tree.ini;
         return   XML2Tree.hasChild(node) ?
             this .selectIco($.plus, $.plusBottom, last) :
             this .selectIco($.join, $.joinBottom, last)
     },
     expand: function   (i) {
         var   r = this .row, s = [];
         for   ( var   k = 0; k < r.length; k++) {
             var   url = r[k][0].replace( '{0}' , i);
             s.push( '<a href="'   + url + '">'   + r[k][1] + '</a>'   + (k == r.length - 1 ? ''   : ' | ' ));
         }
         return   s.join( '' );
     },
     selectIco: function   (_1, _2, bool) {
         return   '<img src="'   + (bool ? _1 : _2) + '" align="absimddle" />'
     }
};
/*
静态接口
*/
XML2Tree.ini = {
     root: 'ui/base.gif' ,
     folder: 'ui/folder.gif' ,
     folderOpen: 'ui/folderopen.gif' ,
     node: 'ui/page.gif' ,
     empty: 'ui/empty.gif' ,
     line: 'ui/line.gif' ,
     join: 'ui/join.gif' ,
     joinBottom: 'ui/joinbottom.gif' ,
     plus: 'ui/plus.gif' ,
     plusBottom: 'ui/plusbottom.gif' ,
     minus: 'ui/minus.gif' ,
     minusBottom: 'ui/minusbottom.gif' ,
     nlPlus: 'ui/nolines_plus.gif' ,
     nlMinus: 'ui/nolines_minus.gif'
};
/* 图标预载 */
XML2Tree.prevLoad = function   () {
     for   ( var   key in   this .ini) {
         var   $ = new   Image();
         $.src = this .ini[key];
     }
};
XML2Tree.next = function   (node) {
     var   $ = node, _ = 'nextSibling' ;
     for   ($ = $[_]; $; $ = $[_]) {
         if   ($.nodeType == 1) { return   $ }
      };
     return   null ;
};
XML2Tree.hasChild = function   (node) {
     var   $ = node.childNodes;
     for   ( var   i = 0; i < $.length; i++)
         if   ($[i].nodeType == 1) return   true ;
     return   false ;
};
XML2Tree.toggle = function   (node, isOpen) {
     var   imgs = node.getElementsByTagName( 'IMG' )
         , f = imgs.length - 1, $ = XML2Tree.ini;
     imgs[f].src = isOpen ? $.folderOpen : $.folder;
     if   ( this .next(node.parentNode)) {
         imgs[f - 1].src = isOpen ? $.minus : $.plus;
     } else   {
         imgs[f - 1].src = isOpen ? $.minusBottom : $.plusBottom;
     }
};
/*
生成实例树
参数:
url: xml 地址
shell: 树容器
loading: 下载中的效果html
getTitle: 标题来源属性操作 this 重置为 xml node
chick: 节点或者叶节点的单击事件(可得到参数title,isFolder与重置后的this)
*/
XML2Tree.prevLoad();

HTML代码

?
1
2
3
4
5
< div   id = "TreeViewTreeView1" ></ div >
< div   class = "xmlToTree" >  
     < h3 >省市</ h3 >
     < div   id = "TreeView1" ></ div >
</ div >

JS调用

?
1
2
3
4
5
6
7
8
9
10
11
new   XML2Tree({
     url: 'city.xml' ,
     shell: 'TreeView1' ,
     edit: true ,
     color: '#E9F5FF' ,
     row: [[ 'city.aspx?action=add&i={0}&Language=Chinese' , '添加' ], [ 'city.aspx?action=edit&i={0}&Language=Chinese' , '修改' ], [ 'city.aspx?action=delete&i={0}&Language=Chinese' , '删除' ]],
     getTitle: function   () { return   this .getAttribute( 't' ) },
     getValue: function   () { return   this .getAttribute( 'v' ) },
     click: function   (title, isFolder) {
     }
});

 

下载地址

点我下载

~!~~~ 民工的命

原创代码,转载请联系 柴哥!!!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值