摘要:
学习js的笔记,资料来自于阮一峰的Blog。如何生成一个“继承”多个对象的实例 。1、构造函数绑定function Animal() { this.species = 'animal'; }function Cat(name, color) { Animal.apply(this, arguments); this.name = name; this.color = color;}var cat1 = new Cat('cat1', 'yellow');alert(cat1.species);2、Prototype模式function Anima 阅读全文
posted @ 2011-10-16 20:41 ritazhou 阅读(414) 评论(0) 推荐(0) 编辑