js檢視Object物件的內容
假設將物件賦給test,此時test是也是物件。
var test = object;
一、檢視物件內容(一級物件)。
for(i in test ){
alert(i); //獲得屬性
alert(test[i]); //獲得屬性值
}
二、檢視物件裡的物件(二級及以上)
for(i in test ){
alert(i);
alert(test[i].toSource());
}
附:
使用JS的 for...in語句
--不知屬性個數時,用於對某個物件的所以屬性進行迴圈操作,返回字串形式的屬性名;獲取屬性值方式: p1[temp] ;
跟Java的for(Student stu:students){...}很像;
語法: for(臨時變數 in 物件例項名){
...
}
function Person(){
this.name="bai";
this.age=19;
this.height=175;
}
var p1= new Person();
var temp,p1Str="";
for(temp in p1){
alert(typeof temp); //是字串
alert(p1[temp]);
p1Str=p1Str+temp+" -- "
}
alert(p1Str); //返回"name -- age -- height"