(对不起,this
javascript中的另一个问题。)
我有下面的代码,我想知道最后调用中的“this”代表什么——窗口还是鸟?
var Bird = (function () {
Bird.name = 'Bird';
function Bird(name) {
this.name = name;
}
Bird.prototype.move = function (feet) {
return alert(this.name + (" flew" + feet + "ft."));
};
return Bird;
}).call(this);