码迷,mamicode.com
首页 > Web开发 > 详细

for in 遍历json

时间:2016-12-24 19:46:46      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:语法   nbsp   span   har   charset   数据   doc   字符   name   

 

 

获取对象属性的语法:

  1.obj.attr

  2.obj["attr"]

for in 遍历json的时候,

  1.for(attr in json)中的attr获取到的是json中属性的名字,是个字符串

  2.json[attr]获取到的是属性的值,该属性的值的数据类型  与  json中该属性的值的数据类型  一致。

<!DOCTYLE html>
<html>
<head>
    <meta charset="uft-8" />
</head>
<body>
</body>
</html>
<script>
    var json1 = {name :‘jack‘,age : 25,gender : ‘male‘ }
    for (attr in json1) {
        console.log(attr);//name,age,gender
        console.log(json1[attr]);//jack,25,male
        console.log(typeof json1[attr]);
    }
</script>

 

for in 遍历json

标签:语法   nbsp   span   har   charset   数据   doc   字符   name   

原文地址:http://www.cnblogs.com/darkterror/p/6218106.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!