ECMAScript3的原型
摘要:
function Super(){ // 父类 } function Sub(){ // 子类 } Sub.prototype = new Super(); Sub.prototype.constructor = Sub; var sub = new Sub(); console.log('Sub.prototype.c... 阅读全文
posted @ 2017-06-12 10:32 沙滩海风 阅读(133) 评论(0) 推荐(0) 编辑