1、存储数据
localStorage.setItem('name', '张三')
2、调取数据
localStorage.getItem('name')
3、存储对象数据时需要用JSON.stringify()转换后再存储,调取时需要用JSON.parse()转换后在使用
存对象Obj
const Obj = {
name: "张三",
age: "18",
}
localStorage.setItem('user', JSON.stringify(Obj))
调取对象Obj
JSON.parse(localStorage.getItem('user'))
4、清除单项存储数据
localStorage.removeItem('name')
5、清除所以存储数据
localStorage.clear()