构造函数模型 案例一 >>工厂模式 function creatjsPerson(name,age){ var obj={ }; obj.name=name; obj.age=age; obj.writeJs=function(){ console.log("my name is "+this.name +",i can write js"); }; return obj; } var p1=cretejsperson("小白",18); p1.writeJs();