javascript當中Object用法

Object
馬克- to-win:馬克 java社區(qū):防盜版實名手機尾號: 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>

輸出結(jié)果:

對象的name屬性:mark
對象的height屬性:4 mark4