-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtry.html
26 lines (26 loc) · 928 Bytes
/
try.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
<!doctype html>
<html>
<head>
<meta charset='UTF-8'>
<title>code</title>
</head>
<body>
<form action="//39.108.75.56:8080/surprise" method="post">
<div class="form-group">
<label>姓名</label>
<input name="name" type="text" class="form-control" placeholder="Name" id="name" oninput="submit_check('oninput')">
</div>
<div class="form-group">
<label>题号</label>
<input name="key" type="text" class="form-control" placeholder="Key" id="key" onfocus="submit_check('onfocus')" onblur="submit_check('onblur')" oninput="submit_check('oninput')">
</div>
<label>答案</label>
<div class="input-group">
<input name="value" type="text" class="form-control" placeholder="Value" id="value" oninput="submit_check('oninput')">
<span class="input-group-btn">
<button class="btn btn-default" type="submit" id="submit">提交</button>
</span>
</div>
</form>
</body>
</html>