-2

我有一个 Javascript 类,它具有三个文本变量:

myClasss = function(){
    this.color = "yellow";
    this.type = "car";
    this.other = this.type + ", " + this.color;
}

我的班级有错误。我该如何填写this.Other

4

1 回答 1

0

除了函数定义后缺少的分号外,它可以工作。

myClasss = function() {
    this.color = "yellow";
    this.type = "car";
    this.other = this.type + ", " + this.color;
};
alert(new myClasss().other == "car, yellow");

你可以在 jsFiddle 中看到它

于 2012-11-22T05:38:09.097 回答