Open gdutwyg opened 5 years ago
localStorage 与 sessionStorage 是html5新增的两种本地存储方式; 了解二者的特性方便在不同的场景下使用它们;
二者共同方法: getItem, setItem,removeItem, clear 事件: storage
用法:
// 默认是当前域名 path路径下可访问 document.cookie="username=John Doe; expires=Thu, 18 Dec 2043 12:00:00 GMT; path=/";
tips: cookie中存放不敏感的数据 控制cookie的生命期,使之不会永远有效。
localStorage 与 sessionStorage 是html5新增的两种本地存储方式; 了解二者的特性方便在不同的场景下使用它们;
localStorage
sessionStorage
二者共同方法: getItem, setItem,removeItem, clear 事件: storage
cookie
用法: