-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.js
44 lines (44 loc) · 1.37 KB
/
gui.js
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
$(document).ready(function(){
$('#s1').change(function() {
$.ajax({
type:"post",
data:{
json: JSON.stringify({
a : '鳩摩羅什版',
b : '菩提流支版',
c : '真諦版',
d : '達摩笈多版'
e : '玄奘版',
f : '義淨版',
})
},
url:"/echo/json/",
dataType:"json",
success:function(j){
$('#s2,#s3').empty();
$.each(j,function(v,k){
$('#s2').append(new Option(k,v));
});
}
});
});
$('#s2').change(function() {
$.ajax({
type:"post",
data:{
json: JSON.stringify({
c : '版本 1',
d : '版本 2'
})
},
url:"/echo/json/",
dataType:"json",
success:function(j){
$('#s3').empty();
$.each(j,function(v,k){
$('#s3').append(new Option(k,v));
});
}
});
});
});