-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajax.php
86 lines (78 loc) · 2.87 KB
/
ajax.php
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<html>
<head>
<script src="jquery-3.3.1.js"></script>
</head>
<body>
<div>
<button id="stop">stop!</button>
<table>
<thead>
<tr>
<th>heft</th>
<th>ct</th>
<th>sa</th>
<th>status</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<script>
$(function(){
var permission = 1;
var total = {
equal : 0,
heft : 0,
ct : 0,
sa : 0,
};
getRandomOne();
$("#stop").on("click",function(){
permission = 0;
});
function getRandomOne()
{
jQuery.ajax({
url: "run.php",
success: function (result) {
result = JSON.parse(result);
best = "sa";
val = result.sa
if(result.heft < val){
best = "heft";
val = result.heft;
}
if(result.ct < val){
best = "ct";
val = result.heft;
}
if(result.sa < val){
best = "sa";
val = result.heft;
}
if(result.heft >= result.sa && result.sa == result.ct){
best = "equal";
val = result.heft;
}
total[best]++;
content = "<tr><td>"+result.heft+"</td>"
+"<td>"+result.ct+"</td>"
+"<td>"+result.sa+"</td>"
+"<td>"+best+"</td><tr>";
$("tbody").append(content);
},
error: function() {
console.error("runRequests Error");
},
complete: function() {
if(permission == 1){
getRandomOne();
}
}
});
}
});
</script>
</body>
</html>