摘要:
一、构造函数法(最常用) function Cat() { this.name = "大毛"; } var cat1 = new Cat(); console.log(cat1.name); // 大毛 function Cat() { this.name = "大毛"; } var cat1 = 阅读全文
摘要:
一、object()方法(不够完善) 只能用于对象: var Chinese = { nation:'中国' }; var Doctor ={ career:'医生' }; function object(parent) { function F() {} F.prototype = parent; 阅读全文