标签:
var obj={ a:"dfsdf", b:function (){ alert(this.a); } };
function Person(name,sex){ //工厂模式 //类就是用来创建对象 var obj={}; this.name=name; this.sex=sex; this.showName=function (){ alert(this.name); } this.showSex=function (){ alert(this.sex); } return obj; }
var Ben=Person("Ben","false");
function Person(name,sex){ //构造函数模式 this.name=name; this.sex=sex; this.showName=function (){ alert(this.name); } this.showSex=function (){ alert(this.sex); } }
2、用new创建一个新的人的对象
var Ben=new Person("Ben","false");
标签:
原文地址:http://www.cnblogs.com/pan-hello/p/4563027.html