-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexam.html
38 lines (37 loc) · 1.12 KB
/
exam.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
<!doctype>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<title>javascript coding exam</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h2>UIT Team JavaScript exam</h2>
<form class="form-horizontal" role="form">
<div class="form-group">
<button id="start" type="button" class="btn btn-default" onclick="myVar1=setInterval(project,300);" >start random</button>
<button id="stop" type="button" class="btn btn-default" onclick="clearInterval(myVar1);">stop random</button>
<button id="sort" type="button" class="btn btn-default" onclick="gathering(TABLE_DATA,post);" >sort</button>
</div>
</form>
<div class="contents">
<table class="table" id="Box1">
<thead>
<tr>
<th>Id</th>
<th>Image</th>
<th>Name</th>
<th>Price</th>
</tr>
</thead>
<tbody id="Bbody">
</tbody>
</table>
</div>
</div>
<script src="json/data.js"></script>
<script src="js/app.js"></script>
</body>
</html>