js對象構造

創建對象的3種方式:

1、

var a=new Object()

a.attributes=“1”;

2、

var a={attributes:"1",aa:"2"}

3、對象構造器

function person(A1,A2,A3)

{

this.a1=A1;

this.a2=A2;

this.a3=A3;

this.method=meth1;

function ad(name)

{

this.a3=name;

}

}

var hh=new person(“我“,”3”,“pp”)

Javascript有對象,沒有類,是基於prototype的。

使用for..in遍歷對象的屬性:

for(x in person)

{}

 

posted @ 2019-03-05 14:17  web前端日志  阅读(144)  评论(0编辑  收藏  举报