码迷,mamicode.com
首页 > 其他好文 > 详细

对象的创建三种方法

时间:2018-01-01 00:30:35      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:name   style   构造器   fun   pos   func   this   方法   pre   

一、使用new关键字调用构造器创建对象

//使用new关键字调用构造器创建对象

function luo(name,age){
    this name    =    name;
    this age    =    age;
}

var s1    =    new luo(true,true);//没有传参数
var s2    =    new luo("haige",18);
document.write(s1.name+‘--‘+s1.age+"<br/>");
document.write(s2.name+‘--‘+s2.age);
document.write(s2.name+"--"+s2.age);

二、使用Object直接创建对象

//使用 Object直接创建对象
var    luo            =    new Object();
    luo.name    =    "类名";
    luo.age        =    34;
    luo.info    =    function(){
    document.write("我的名字是:"+this.name+"<br/>");
    document.write("今年"+this.age+"岁<br/>");
    }
    
    luo.info();

 

对象的创建三种方法

标签:name   style   构造器   fun   pos   func   this   方法   pre   

原文地址:https://www.cnblogs.com/luohaiwenhtml/p/8159399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!