-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtestcases.html
61 lines (43 loc) · 1.71 KB
/
testcases.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
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<style>
table {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
}
table td, #customers th {
border: 1px solid #bbb;
padding: 8px;
}
table tr:nth-child(even){background-color: #f2f2f2;}
table tr:hover {background-color: #ddd;}
table th {
padding-top: 12px;
padding-bottom: 12px;
text-align: center;
background-color: rgb(84, 138, 139);
color: white;
border: 1px solid #bbb;
}
</style>
</head>
<body>
<div id='d1'></div>
<script>
//var json_arr = [{"1":"a","2":"b","3":[{"4":"c","5":"d"}]},{"1":"e","2":[{"6":"f","7":"g"}],"3":"h"}];
//var json_arr = [{"1":"a","2":"b","3":"h"}]
//var json_arr = [{"1":"a","2":[{"4":"b","5":"c"}],"3":[{"6":"d","7":"e"}]}]
//var json_arr = [{"id":1, "name":"name1"}, {"id":2, "name":"name2", "salary":2000}, {"id":3, "name":"name3"}, {"id":4, "name":"name4", "bonus":3000}, {"id":5, "name":"name5", "salary":{"basic":2000, "extra":"500"}}, {"id":6, "name":"name6", "bonus":[{"quarter":1, "first":1000, "second":"500"},{"quarter":2, "first":1000, "second":"500"}]}]
var json_arr = [
{"1":"a","2":[{"1":"b","2":"c"}],"3":[{"6":"d","7":"e"}]},
{"1":"a","2":1,"3":"4", "4":"D"},
{4:[{"1":"a","2":1,"3":"4", "4":"D"}]},
]
$(document).ready(function () {
$('#d1').append(makeTable(json_arr));
});
</script>
<script src="jsoneditor.js"></script>
</body>
</html>