javascript当中Object用法

Object
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。
例 3.9.1

<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<script>
        /*马克-to-win:When the Global object is created, it always has at least the following properties:
       Object object       Function object       Array object       String object
       Boolean object       Number object       Date object       Math object
       Value properties
   */
    var oi = new Object();
    oi.name = 'mark';
    oi.height = 4;
    function xxx()
    {
        document.writeln("对象的name属性:" + this.name);
        document.writeln("<br>");
        document.writeln("对象的height属性:" + this.height);
    }
    oi.list = xxx;
    oi.list();
    document.writeln(oi["name"] + oi["height"]);
</script>

输出结果:

对象的name属性:mark
对象的height属性:4 mark4