-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
44 lines (40 loc) · 1.43 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
<html>
<head>
</head>
<body>
<div id="check"></div>
<select data-target="secondList" class="firstList selectFilter">
<option value="-1">Select</option>
<option data-ref="one" >First One</option>
<option data-ref="two" >First Two</option>
<option data-ref="three">First Three</option>
</select>
<br />
<br />
<select data-target="thirdList" class="secondList selectFilter">
<option value="-1">Select</option>
<option data-ref="A" data-belong="one" >First One</option>
<option data-ref="B" data-belong="two">First Two</option>
<option data-ref="C" data-belong="three">First Three</option>
<option data-ref="D" data-belong="one">Second One</option>
<option data-ref="E" data-belong="two">Second Two</option>
<option data-ref="F" data-belong="three">Second Three</option>
</select>
<br />
<br />
<select class="thirdList selectFilter">
<option value="-1">Select</option>
<option data-belong="A" >First One</option>
<option data-belong="B">First Two</option>
<option data-belong="C">First Three</option>
<option data-belong="D">Second One</option>
<option data-belong="E">Second Two</option>
<option data-belong="F">Second Three</option>
<option data-belong="A">Third One</option>
<option data-belong="B">Third Two</option>
<option data-belong="C">Third Three</option>
</select>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="selectFilter.min.js"></script>
</body>
</html>