WebStudy

테이블 클릭시 값 가져오기

델랑 2015. 6. 22. 09:53

 

 

$("tr").click(function(event){
  if(this.rowIndex >=2){
   var add = '';
   var zip = '';
   $(this).children().each(function(idx){
    if(idx < $(this).parents().length-1){
     add += $(this).text();
    }else {
     zip = $(this).text();
    }
   });
   alert(add + '\n' + zip);
  }
 });