DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 遍歷json 對象的屬性並且動態添加屬性的實現
遍歷json 對象的屬性並且動態添加屬性的實現
編輯:關於JavaScript     

昨天因為公司的一個需求,所以就研究了一下json對象的屬性的遍歷和動態修改:

var person= {  
 name: 'zhangsan',  
 pass: '123' ,  
 'sni.ni' : 'sss',  
 hello:function (){  
   for(var i=0;i<arguments.length;i++){  
       //在不知參數個數情況下可通過for循環遍歷        
       // arguments這個是js 默認提供  
      alert("arr["+i+"]="+arguments[i]);  
   }    
 }  
 }  
   
//遍歷屬性  
 for(var item in person){  
  if(typeof person[item] === 'string'){  
   alert("person中"+item+"的值="+person[item]);  
  }else if(typeof person[item] === 'function'){  
    person[item](1,1);//js 的function的參數可以動態的改變  
  }  
 }  
//添加屬性  
 
 person.isMe = 'kaobian'; // 這種是屬性名字正常的  
//當屬性名字不正常時,像下面這種,必須用這種形式的,  
 person['isMe.kaobian'] = 'hello kaobian'; //上面的也可以用下面的形式  
 
 for(var item in person){  
  if(typeof person[item] === 'string'){  
   alert("person中"+item+"的值="+person[item]);  
  }else if(typeof person[item] === 'function'){  
 
    person[item](1,1);  
  }  
 }  

以上這篇遍歷json 對象的屬性並且動態添加屬性的實現就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved