首页 > 建站教程 > CSS3+HTML5 >  html5 localStorage保存json对象正文

html5 localStorage保存json对象

        最近我爱模板网在做项目时,需要用html5的本地存储技术localStorage保存数据,之前用过几次,确实比js的cookie好用多了,但是保存的一直都是字符串,今天想保存对象,发现保存不了,必须保存字符串格式,那就只能转成json字符串了。js的JSON.stringify()可以将对象转成json字符串,同时,JSON.parse又能将JSON字符串转换成对象格式,供调用。下面是代码:
localStorage.setItem("user",JSON.stringify({name:'我爱模板网',age:18}));
console.log(localStorage.getItem("user"));
alert(JSON.parse(localStorage.getItem("user")).name);
alert(JSON.parse(localStorage.getItem("user")).age);