var car=function(){};
car.prototype.name="宝马";
car.prototype.color="褐色";
car.prototype.luzi=4;
car.prototype.say=function(){
alret("我是一个" + this.color + "的" + this.name+"有"+this.lunzi+"轮子");
};
var BM=new car();
BM.say();
上边的代码有问题吗?为什么alert没有弹出来呢??
3 回答
已采纳
千秋此意
TA贡献158条经验 获得超187个赞
this指向没问题,是你单词拼错了...
alert 错写成 alret 导致报错
car.prototype.luzi=4; 和下面的 this.lunzi 统一下,不然会出undefined
添加回答
举报
0/150
提交
取消