摘要: 在javascript学习笔记(八)中,我们主要学习了在使用javascript面向对象编程时,如何创建对象及添加对象的属性和方法。在使用面向对象编程时,对象间的继承关系自然少不了!而原型正是实现javascript继承的很重要的一种方法!我们首先来看以下代码: function person(name, age) { this.name = name; this.age = age; } person.prototype.getInfo = function() { alert("My name is "+this.name+", and I have &quo 阅读全文
posted @ 2011-04-11 14:31 张臣 阅读(1761) 评论(2) 推荐(4) 编辑