我们如何将字符串转换为对象

时间:2015-07-27 14:24:52

标签: jquery

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");
            }
        });
    });

一旦分析了小提琴中的程序,请任意说明如何将字符串转换为对象

1 个答案:

答案 0 :(得分:0)

您可以通过调用JSON.parse

来转换它
localStorage.setItem("contacts",JSON.stringify(details));
var str=localStorage.getItem("contacts");
str = JSON.parse(str); 
$("#div1").text(str);

请检查此the spec