摘要: js中继承可以分为两种:对象冒充和原型链方式 一、对象冒充包括三种:临时属性方式、call()及apply()方式1.临时属性方式 代码如下: function Person(name){ this.name = name; this.say = function(){ alert('My name 阅读全文
posted @ 2016-08-31 10:43 Jason.Zeng 阅读(222) 评论(0) 推荐(0) 编辑