实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
    <title>Object Type Example 2</title>
5
    <script type="text/javascript">
6
        var person = {
7
            name : "Nicholas",
8
            age : 29
9
        };
10
11
        alert(person.name);
12
        alert(person.age);
13
14
    </script>
15
</head>
16
<body>
17
18
</body>
19
</html>