10)json
例 3.10.1
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<script>
var student =
{ name : 'mark',
age : 3 ,
classes : ['小' , '中' , "大"],
/* 马克-to-win:class is an array of string, also parents is also an array of json object. */
parents :[
{
name : 'father',
age : 42,
salary : 'low'
}
,
{
name : 'mother',
age : 37,
salary : 'high'
}
]
};
document.writeln(student.name);
document.writeln("<hr>");
document.writeln(student.age);
document.writeln("<hr>");
document.writeln(student.classes[1]);
document.writeln("<hr>");
document.writeln(student.parents[1].name);
</script>
更多请看见:https://blog.youkuaiyun.com/qq_44594249/article/details/100119851
博客展示了JavaScript中JSON对象的使用示例,定义了一个学生对象,包含姓名、年龄、班级数组和父母信息数组等属性,并通过document.writeln输出对象的部分属性值。更多内容可查看指定链接。

被折叠的 条评论
为什么被折叠?



