为什么alert不能正常弹出

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没有弹出来呢??
错落年间我许你一世
浏览 1446回答 3
3回答

千秋此意

this指向没问题,是你单词拼错了...alert 错写成 alret 导致报错car.prototype.luzi=4; 和下面的 this.lunzi 统一下,不然会出undefined

kamidb

指向还没看,不过第三个单词拼错了

慕田峪3555374

this 指向问题,你用火狐浏览器的firebug调一下,很好调的
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript