单体创建对象,工厂模式,构造函数,原型模式,call和apply,函数的继承,新增选择器,jQuery加载,jQuery选择器,jQuery样式操作,点击事件,索引值与选项卡
单体:varton={name:'tom',age:18,showName:functionn(){alert(this.name);},showAge:function(){alert(this.age);},}Tom.showName();工厂模式:functionPerson(name,age,job){varo=newObject();varo={};两种方法o.name=name;o.a