摘要: 一. 原型与构造函数 Js所有的函数都有一个prototype属性,这个属性引用了一个对象,即原型对象,也简称原型。这个函数包括构造函数和普通函数,我们讲的更多是构造函数的原型,但是也不能否定普通函数也有原型。譬如普通函数: function F(){ ;}alert(F.prototype ins 阅读全文
posted @ 2016-05-01 07:57 prince.shi 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 继承:function Animal(name){ this.name = name; this.showName = function(){ alert(this.name); } } function Cat(name){ Animal.call(this, name); } var cat = 阅读全文
posted @ 2016-05-01 07:44 prince.shi 阅读(251) 评论(0) 推荐(0) 编辑