JavaScript设计模式之原型模式(Object.create与prototype)介绍
原型模式说明
说明:使用原型实例来拷贝创建新的可定制的对象;新建的对象,不需要知道原对象创建的具体过程;
过程:Prototype=>newProtoExam=>clonetonewObject;
使用相关代码:
functionPrototype(){ this.name=''; this.age=''; this.sex=''; }
Prototype.prototype.userInfo=function(){ return'个人信息,姓名:'+this.name+',年龄:'+this.age+',性别:'+this.sex+'<br/>'; }