-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (111 loc) · 2.5 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CODE MEMORIZE</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
</head>
<style>
html, body{
margin: 0;
padding: 0;
}
table {
width: 100%;
padding: 20px;
}
tr {
padding: 0;
}
td {
padding: 0;
text-align: center;
vertical-align: top;
}
.calculate_btn, .reset_btn {
margin: 0;
width: calc(100% - 20px);
padding: 10px;
border: none;
border-radius: 5px;
background-color: #0055ff;
font-family: 'Noto Sans KR';
font-weight: 700;
font-size: 18px;
color: #ffffff;
}
.code_input {
margin: 0;
width: 98%;
height: 800px;
}
.result_txt {
margin-left: 5px;
text-align: left;
}
</style>
<body>
<table>
<tr>
<td style="width: 65%;"><button id="calculate" class="calculate_btn">CHECK</button></td>
<td style="width: 35%;"><button id="reset" class="reset_btn">RESET</button></td>
</tr>
<tr>
<td>
<textarea id="code" class="code_input">
<!-- CODE INPUT AREA START -->
<!-- CODE INPUT AREA END -->
</textarea>
</td>
<td>
<p id="result" class="result_txt"></p>
</td>
</tr>
</table>
</body>
<script>
var code = document.getElementById('code');
var calculate = document.getElementById('calculate');
var reset = document.getElementById('reset');
var result = document.getElementById('result');
const mission = {
"things to check": "hint for the check",
"things to check2": "hint for the check2",
"things to check3": "hint for the check3"
}
calculate.onclick = function(){
result.innerHTML = "";
var lines = code.value.split("\n");
var pureCode = "";
for(var i=0; i<lines.length; i++){
if(lines[i].includes("//")){
comment = lines[i].split("//");
thisLine = comment[0];
} else{
thisLine = lines[i];
}
thisLine.replace(" ", " ");
thisLine.replace(" ", " ");
pureCode += thisLine + "\n";
}
count = 0;
for(let x in mission){
if(!pureCode.includes(x)){
count++;
result.innerHTML += count + ". " + mission[x] + "<br>";
}
}
if(count == 0){
result.innerHTML = "There are no errors."
}
}
reset.onclick = function(){
location.reload();
}
window.onload = function(){
result.innerHTML = "Press CHECK";
}
</script>
</html>