//构造函数
function Cat(name,color){
this.name=name;
this.color=color;
}
//原型
Cat.prototype={
run:function(){
//操作
alert(this.name+"run");
},
mew:function(){
//操作
alert(this.name+"mew");
}
}
//实例
var cat1=new Cat(‘tom‘,‘black‘);
//调用
cat1.run();
时间: 2024-10-13 20:59:14