2019-04-15 json集合
2019-04-19 本文已影响0人
果冻_4c9b
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script type="text/javascript">
// json 类似map集合
var json={
'name':'张国栋',
'age':'23'
};
console.log(json['name']);
console.log(json['age']);
// 遍历
for(attr in json){
console.log(attr,json[attr]);
}
</script>
</body>
</html>