var obj = new Object();
var arr = new Array();
obj.id = 'test_1';
obj.pw = '123';
arr.push(obj);
var objA = new Object();
var arrA = new Array();
objA.id = 'abc';
objA.pw = '111';
arrA.push(objA);
arr.push(arrA);
//console.log( 'arr type 1 : ' + typeof(arr)); //object
//console.log( 'arr type 2 : ' + $.type(arr)); //array
for(var i=0; i<arr.length; i++){
console.log( "i:" + i + " / " + arr[i] + " type: " + $.type(arr[i]));
// i:0 / [object Object] type: object
// i:1 / [object Object] type: array
if( $.type(arr[i]) == 'array' ){
console.log('This is an array! ' + i);
// This is an array! 1
}
if(Array.isArray(arr[i])){
console.log('This is also an array! ' + i);
// This is also an array! 1
}
}
반응형
'Language & Library > jQuery' 카테고리의 다른 글
jquery - trim 공백제거, (html style에서) 공백 제거하지 않는 방법 (0) | 2014.01.24 |
---|---|
jQuery datepicker 사용하기(다양한 예제) (0) | 2013.12.20 |
jQuery text, name, select 접근 방법 참조 (0) | 2013.12.13 |
jQuery 배열 선언과 처리 기초 01 (0) | 2013.12.02 |
'위치' 관련 필터 선택자 (0) | 2013.12.02 |