用 new Object() 来创建对象在javascript里有几种创建对象的方法,在不同的场合可用不同的方法.最简单的就是用 new 操作符,例如: 代码如下:[removed] <!– person = new Object() person.name = “Tim Scarfe” person.height = “6Ft” person.run = function() { this.state = “running” this.speed = “4ms^-1” } //–>