码迷,mamicode.com
首页 > 其他好文 > 详细

构造函数+原型

时间:2017-08-31 16:11:53      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:func   color   his   on()   asc   this   text   函数   属性   

<script type="text/javascript">
function Car(color, doors, wheels) { //创建一个类
this.color = color; //类属性
this.doors = doors;
this.wheels = wheels;
this.run = function() { //类方法
alert("我会跑!!!");
}
}
Car.prototype.cc = "hahaha"; //通过proto属性存储一个cc=“hahaha”;
Car.prototype.stop = function() { //原型链
alert("我会停止!!!");
}
Car.prototype.stop2 = function() { //关注原型链接
alert("我还是会停!!!");
}

//创建一个实例对象;
var car1 = new Car("red", 4, 4);
alert(car1.cc);
car1.run();
car1.stop();
document.write("这个车的颜色是:" + car1.color + "<br/>");
document.write("这个车有" + car1.doors + "个门" + "<br/>");
document.write("这个车有" + car1.wheels + "轮子<br/><br/><br/>");


var car2 = new Car("blue", 4, 4);
document.write("这个车的颜色是:" + car2.color + ",有" + car2.doors + "个车门,有" + car2.wheels + "个轮子<br/>");
car2.stop2();
</script>

构造函数+原型

标签:func   color   his   on()   asc   this   text   函数   属性   

原文地址:http://www.cnblogs.com/ermaoblog/p/7458303.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!