-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcookie.html
50 lines (41 loc) · 1.04 KB
/
cookie.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cookie</title>
</head>
<body>
<h2>Cookie</h2>
<script>
function setCookie(name, value, time, path = '/') {
var date = new Date()
date.setSeconds(date.getSeconds() + time)
document.cookie =
name +
'=' +
value +
';expires=' +
date.toUTCString() +
';path=' +
path
}
function getCookies() {
const entries = document.cookie.split('; ').map(function (el) {
return el.split('=')
})
return Object.fromEntries(entries)
}
function getCookie(name) {
return getCookies()[name]
}
function removeCookie(name) {
setCookie(name, '', 0)
}
// removeCookie('age')
// console.log(getCookie('gender'))
// getCookies()
// setCookie('age', '34', 2000)
</script>
</body>
</html>