<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>json</title>
</head>
<body>
<script type="text/javascript">
// var 小明 = {width:'300px',height:'300px',background:'yellow'};
// // 小明{身高:182cm,体重:62kg,年龄:88}
// //小明的身高
// //
// alert(小明.background); //弹出的结果为 yellow
// var 小明 = {width:'300px',height:'10px',background:'yellow'};
// for(abc in 小明){
// console.log(abc + '---' + 小明[abc]);
// }
//以上console.log的内容
// width---300px
// height---10px
// background---yellow
</script>
</body>
</html>