-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
301 lines (269 loc) · 10.2 KB
/
index.html
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>select级联</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="duzhongbo_gz" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/doc.css">
</head>
<body>
<div class="doc">
<div class="article">
<div class="section">
<div class="page-header">
<h1>select级联插件</h1>
</div>
<h3 id="headings">一、简述:</h3>
<p>
1、可从2级到n级扩展,无需变动主体逻辑 <br>
2、数据与逻辑分离,数据部分结构简单(基本呈现原始原始二维excel数据结构),易于格式化,易于增减 <br>
3、可设置默认值 <br>
4、更少的必要参数设置
</p>
<h3>二、参数表:</h3>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th style="width: 100px;">名称</th>
<th style="width: 50px;">类型</th>
<th style="width: 50px;">默认值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>string</td>
<td>'selectN'</td>
<td>和 <code>J_class</code>参数配合,绑定需要级联的select</td>
</tr>
<tr>
<td>J_class</td>
<td>string</td>
<td>'sn'</td>
<td>和 <code>id</code>参数配合,绑定需要级联的select</td>
</tr>
<tr>
<td>data</td>
<td>array</td>
<td>data</td>
<td>给级联select提供数据的数组名称</td>
</tr>
<tr>
<td>textTag</td>
<td>string</td>
<td>'key_'</td>
<td>给级联select提供数据的数组对象中“键值对”的键前缀,其值对应option的显示文本,默认形式为: <code>{'key_0':'黑龙江省','id_0':'1','key_1':'哈尔滨市',...</code></td>
</tr>
<tr>
<td>valueTag</td>
<td>string</td>
<td>'id_'</td>
<td>给级联select提供数据的数组对象中“键值对”的键前缀,其值对应option的value值,默认形式为: <code>{'key_0':'黑龙江省','id_0':'1','key_1':'哈尔滨市',...</code></td>
</tr>
<tr>
<td>default_</td>
<td>array</td>
<td>无默认值(undefined)</td>
<td>数组的第一个元素对应级联的第一个select,第二个对应第二个select。比如2级省市联动,要默认广东省,可以这样设置 <code>default_:['广东省']</code>,默认选中广东省,广州市,可以 <code>default_:['广东省','广州市']</code>
</td>
</tr>
<tr>
<td>disabled</td>
<td>boolean</td>
<td>false</td>
<td>有时不光要给select设置默认选项,还要默认的select灰选,不能选择默认外其他选项,这时给 <code>disabled</code>设置成 <code>true</code>就可以达到效果。(注:如果让一个select灰选了,那么它的值就无法通过name获取到了)</td>
</tr>
<tr>
<td>lastAuto</td>
<td>boolean</td>
<td>false</td>
<td>每个select在你选择它的option之前它默认都是灰选或者显示“请选择XXX”,可有时最后一个select往往是只有一个对应,客户要求最后一个选项可以在倒数第2个选完之后,自动显示出来,这是设置 <code>lastAuto</code>为 <code>true</code>即可</td>
<td></td>
</tr>
<tr>
<td>outside</td>
<td>string</td>
<td>空('')</td>
<td>有时要求级联最后一项不用select而是直接显示在页面上,比如“省、市、经销商,经销商地址”级联,要求地址直接显示在页面上。此时给需要显示“地址”信息的容器绑定一个id,把此id赋值给 <code>outside</code>即可</td>
</tr>
</tbody>
</table>
<h3>三、使用方法示意图:</h3>
<img src="img/1.png" alt=""/><br><br>
<h3>四、data.js数据结构:</h3><br />
<img src="img/2.png" alt=""/><br><br>
<h3>五、demo实例:</h3>
<div class="example">
<div id="selectN">
2级联动: <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
</div>
</div>
<br>
<div class="example">
<div id="select1">
3级联动: <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
经销商: <select title="请选择经销商" class="sn"></select>
</div>
</div>
<br>
<div class="example">
<div id="select2">
4级联动,<span class="label label-important"> 最后一个“地址”在select外显式 </span>: <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
经销商: <select title="请选择经销商" class="sn"></select>
<div style="display:none">
<select title="请选择地址" class="sn "></select>
</div>
<br>
地址: <div id="addr"></div>
</div>
</div>
<br>
<div class="example">
<div id="select3">
4级联动: <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
经销商: <select title="请选择经销商" class="sn"></select>
地址: <select title="请选择地址" class="sn "></select>
</div>
</div>
<br>
<div class="example">
<div id="select4">
<span class="label label-important"> 4级联动,最后一个select“地址”不用选 </span>: <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
经销商: <select title="请选择经销商" class="sn"></select>
地址: <select title="请选择地址" class="sn "></select>
</div>
</div>
<br>
<div class="example">
<div id="select5">
4级联动,<span class="label label-important"> 设置默认广东省 </span>: <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
经销商: <select title="请选择经销商" class="sn"></select>
地址: <select title="请选择地址" class="sn "></select>
</div>
</div>
<br>
<div class="example">
<div id="select6">
4级联动,<span class="label label-important"> 设置默认广东省广州市</span>: <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
经销商: <select title="请选择经销商" class="sn"></select>
地址: <select title="请选择地址" class="sn "></select>
</div>
</div>
<br>
<div class="example">
<div id="select7">
4级联动,<span class="label label-important"> 设置默认广东省广州市,并且灰选 </span>(<span class="label label-warning"> 注:在给select的disabled设置成true后,form表单就不能用name的方式提交他的值了 </span>): <br><br>
省份: <select title="请选择省份" class="sn"></select>
城市: <select title="请选择城市" class="sn"></select>
经销商: <select title="请选择经销商" class="sn"></select>
地址: <select title="请选择地址" class="sn "></select>
</div>
</div>
<pre class="prettyprint linenums">
<script type="text/javascript">
//2级联动,使用默认selectN绑定
new zt.SelectN('data.js',{});
//3级联动
new zt.SelectN('data.js',{
id:'select1'
});
//4级联动, 最后一个“地址”在select外显式
new zt.SelectN('data.js',{
id:'select2',
outside:'addr'
});
//4级联动
new zt.SelectN('data.js',{
id:'select3'
});
// 4级联动,最后一个select“地址”不用选
new zt.SelectN('data.js',{
id:'select4',
lastAuto:true
});
//4级联动,设置默认广东省
new zt.SelectN('data.js',{
id:'select5',
default_:['广东省'],
lastAuto:true
});
//4级联动,设置默认广东省广州市
new zt.SelectN('data.js',{
id:'select6',
default_:['广东省','广州市'],
lastAuto:true
});
//4级联动,设置默认广东省广州市,并且灰选
new zt.SelectN('data.js',{
id:'select7',
default_:['广东省','广州市'],
disabled:true,
lastAuto:true
});
</script>
</pre>
</div>
</div>
</div>
<script type="text/javascript" src="zt_select.js"></script>
<script type="text/javascript">
//2级联动,使用默认selectN绑定
new zt.SelectN('data.js',{});
//3级联动
new zt.SelectN('data.js',{
id:'select1'
});
//4级联动, 最后一个“地址”在select外显式
new zt.SelectN('data.js',{
id:'select2',
outside:'addr'
});
//4级联动
new zt.SelectN('data.js',{
id:'select3'
});
// 4级联动,最后一个select“地址”不用选
new zt.SelectN('data.js',{
id:'select4',
lastAuto:true
});
//4级联动,设置默认广东省
new zt.SelectN('data.js',{
id:'select5',
default_:['广东省'],
lastAuto:true
});
//4级联动,设置默认广东省广州市
new zt.SelectN('data.js',{
id:'select6',
default_:['广东省','广州市'],
lastAuto:true
});
//4级联动,设置默认广东省广州市,并且灰选
new zt.SelectN('data.js',{
id:'select7',
default_:['广东省','广州市'],
disabled:true,
lastAuto:true
});
</script>
</body>
</html>