자바스크립트에서 객체가 가진 모든 요소(필드) 의 값 출력하기

By | 11월 2, 2009

 var testObj = obj      //obj : 필드를 가지고 있는 Object
 var alertStr = "";
 for (objKey in testObj){
  alertStr += "testObj ["+objKey +"] = " + testObj[objKey]+"\n";
 }
 alert(alertStr);

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments