抱歉,如果之前已经回答过这个问题,但是对于在 Javascript 中创建自定义对象所提供的选择数量,我有点不知所措。我不确定它们各自的优点或缺点,或者它们是否完全不同。
以下是我发现的一些构造对象的不同方法:
1:新对象
person = new Object()
person.name = "Tim Scarfe"
person.height = "6Ft"
person.run = function() {
this.state = "running"
this.speed = "4ms^-1"
}
2:字面符号
timObject = {
property1 : "Hello",
property2 : "MmmMMm",
property3 : ["mmm", 2, 3, 6, "kkk"],
method1 : function(){alert("Method had been called" + this.property1)}
};
3:功能
function AdBox() {
this.width = 200;
this.height = 60;
this.text = 'default ad text';
this.prototype.move = function() {
// code for move method goes here
}
}
this.prototype.display = function() {
// code
}
我什至看到了更多的方法,但它们似乎不太常见。如您所见,当有人只想要一个带有字段和方法的简单对象时,我不确定标准是什么。
谢谢阅读。