练习3_cookie.html 666 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <script>
  10. // 设置cookie
  11. function setCookie(key,value,timer){
  12. }
  13. // 获取cookie
  14. function getCookie(key){
  15. }
  16. // 删除cookie
  17. function delCookie(key){
  18. }
  19. // 设置一个cookie name=张三 过期时间为10天后
  20. setCookie('name','张三',10);
  21. // 获取cookie
  22. console.log(getCookie('name'));
  23. // 删除cookie
  24. delCookie('name');
  25. </script>
  26. </body>
  27. </html>