继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

js基础05--Object对象

muzidigbig
关注TA
已关注
手记 14
粉丝 17
获赞 96

创建 JavaScript 对象

通过 JavaScript,您能够定义并创建自己的对象。

创建新对象有两种不同的方法:

  1. 定义并创建对象的实例

  2. 使用函数来定义对象,然后创建新的对象实例

创建直接的实例

这个例子创建了对象的一个新实例,并向其添加了四个属性:

方式一:

window.=function () {
    var person = new Object();
    person.firstname="Bill";
    person.lastname="Gates";
    person.age=56;person.eyecolor="blue";//     document.write()想页面中输出信息
    document.write(person.firstname + " is " + person.age + " years old.");
    }

方式二:

   var person={
       firstname:"John",
       lastname:"Doe",
       age:50,
       eyecolor:"blue"
       };

使用对象构造器

本例使用函数来构造对象:

function person(firstname,lastname,age,eyecolor){
    this.firstname=firstname;
     this.lastname=lastname;    
     this.age=age;    
     this.eyecolor=eyecolor;
     }
     var myFather=new person("Bill","Gates",56,"blue");
  document.write(myFather.firstname + " is " + myFather.age + " years old.");




如有不足请多多指教!希望给您带来帮助!


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP