forked from youzhiye/TimeCalculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 982 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="./js/jquery.min.js"></script>
<script src="./js/main.js"></script>
<title>Time Calculator</title>
</head>
<body>
<div class="mainthing">
<label>请输入要做的事情</label>
<input type="text" id="sth" name="sth" placeholder="看电影?">
<label>请输入事情开始时间</label>
<input type="date" id="startDate" name="date">
<input type="time" id="startTime" name="time">
</div>
<div class="add"></div>
<button type="submit" id="addbtn">添加事件</button><br>
<button type="submit" id="descOk">正序输出</button>
<button type="submit" id="ascOk">逆序输出</button>
<button type="reset" id="resetResult">重置结果</button>
<div class="result"></div>
</body>
</html>