https://jsfiddle.net/nagabhavani/vjnsd5wo/
$(document).ready(function(){
$("#btn").click(function(){
if(typeof(Storage)!=="undefined")
{
localStorage.setItem("contacts",JSON.stringify(details));
var str=localStorage.getItem("contacts");
$("#div1").text(str);
}
else
{
$("#div1").text("Sorry ur browser does not support");
}
});
});
一旦分析了小提琴中的程序,请任意说明如何将字符串转换为对象
答案 0 :(得分:0)
您可以通过调用JSON.parse
来转换它localStorage.setItem("contacts",JSON.stringify(details));
var str=localStorage.getItem("contacts");
str = JSON.parse(str);
$("#div1").text(str);
请检查此the spec