jquery에서 특정 html 컴포넌트를 접근하려면. 다음처럼 접근할 수 있다.


$('#atable > tbody > tr[id]')


그리고 json 객체를 생성하려면 JSON.stringify를 사용한다.



예제는 다음과 같다.



var objects = [];

$('#atable > tbody > tr[id]').each(function( index ) {

  var object = new Object();

  object.index=index;

  object.id=$(this).attr('id');

  objects.push(object);

});

var jsonObject = JSON.stringify(objects);




Posted by '김용환'
,