-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<!-- Latest compiled and minified CSS
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity=" sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>HTML</title>
</head>
<body>
<h2>Data Table</h2>
<div class="panel panel-default">
<div class="panel-body">
<div class="container">
<table class="table">
<thead>
<tr>
<th>id</th>
<th>name</th>
<th>descript</th>
<th>price</th>
</tr>
</thead>
<tbody id="mytabbody">
</tbody>
<tfoot>
</tfoot>
</table>
</div>
<button type="button" class="btn btn-primary" onclick="randTableStart()">RondStart</button>
<button type="button" class="btn btn-secondary" onclick="randTableStop()">RondStop</button>
<button type="button" class="btn btn-success" onclick="sortTable()">SortD</button>
<button type="button" class="btn btn-info" onclick="genTable()">GenTable</button>
<button type="button" class="btn btn-danger" onclick="cleanTable()">ClearTab</button>
</div>
</div>
</body>
<script src="json/index.json"></script>
<script src="js/index.js"></script>
</html>