javascript中定义类和对象最好的方法

function Car(sColor,iDoors,iMpg){
this.color=sColor;
this.doors=iDoors;
this.mpg=iMpg;
this.drivers=new Array("Mike", "Sue");
}
Car.prototype.showColor =function(){
alert(this.color);
}

var oCar1=new Car("red",4,23);


或者是
function Car(sColor,iDoors,iMpg){
this.color=sColor;
this.doors=iDoors;
this.mpg=iMpg;
this.drivers=new Array("Mike", "Sue");
if(typeof Car._initialized=="undefined")
{
    Car.prototype.showColor=function(){
    alert(this.color);
    };
    Car._initialized=true;
}


}

posted on 2007-10-29 17:59 刘铮 阅读(434) 评论(0)  编辑  收藏 所属分类: JavaScript

<2025年6月>
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

导航

统计

留言簿(1)

文章分类(141)

文章档案(147)

搜索

最新评论