JSON 在javascript中使用json

JSON举例(javascript中使用json)

1.简单的例子:


var usre={"id":1,"name":"you","ide":"eclipse"}
alert(usre.id);
alert(usre[“name”’]);


2.为 id 属性添加更详细的信息:

"id":{ “no”:1,”dizhi”:”山东省”};

3.为 id 属性定义成数组:


”id”: [  

           { “no”:1,”dizhi”:”山东省”},
           { “no”:2,”dizhi”:”海南省”}

       ]

4.多用户列表:

var usre = [  {"id":1,"name":"you","ide":"eclipse"},
                     {"id":2,"name":"ken","ide":"VB"}       ]
例子:

Name:
Age:
Address:
Phone:



转载于:https://my.oschina.net/czyandy/blog/692299

你可能感兴趣的:(JSON 在javascript中使用json)