-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjectoriented.html
More file actions
42 lines (40 loc) · 1.17 KB
/
Copy pathobjectoriented.html
File metadata and controls
42 lines (40 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="font/css/all.min.css">
</head>
<body>
<section class="mt-5 col-md-8 mx-auto p-4 border rounded">
<label for="">Todo</label>
<input type="text" id="input" class="form-control mb-3" placeholder="Add to do">
<button class="btn btn-primary d-block float-right" id="btn">Add</button>
<div class="clearfix"></div>
</section>
</body>
<script>
let todo = input.value
let date = new Date()
let createdAt = date.toLocaleDateString()
let Todolist = []
class Todo {
constructor(todo, Created){
this.todo = todo,
this.created = Created
}
Addtodo(){
// Todolist.push(Todo)
console(this)
}
}
let todoItem = new Todo (todo, createdAt)
btn.addEventListener('click', function() {
// .Addtodo()
// console.log(Todolist);
todoItem.Todo()
})
</script>
</html>