欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

javascript最常用的对象创建方式

程序员文章站 2022-07-01 20:47:49
1 //第一种 2 function Demo(){ 3 var obj=new Object(); 4 obj.name="Yubaba"; 5 obj.age=12; 6 obj.firstF=function(){ 7 } 8 obj.secondF=function(){ 9 } 10 re... ......
 1 //第一种
 2 function demo(){
 3     var obj=new object();
 4     obj.name="yubaba";
 5     obj.age=12;
 6     obj.firstf=function(){
 7     }
 8     obj.secondf=function(){
 9     }
10     return obj;
11 }
12 
13 var one=demo();
14 // 调用输出
15 document.write(one.age);

 1 //第二种
 2 function demo(){
 3     this.name="yubaba";
 4     this.age=12;
 5     this.firstf=function(){
 6     }
 7     this.secondf=function(){
 8     }
 9 }
10 
11 var one=new demo
12 
13 // 调用输出
14 document.write(one.age);