ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • table 선택시 td를 구분하여 선택, 형제 선택
    카테고리 없음 2020. 7. 7. 00:37
    $(function(){
    
    
    	$('tbody > tr > td:nth-child(1)').click(function(){
    		var post_no = $(this).find('input').val();
    		location.href = '${viewURI}?post_no=' + post_no;
    	});
     	
     	$('tbody > tr > td:nth-child(2)').click(function(){
    		 var file_no = $(this).find('input').val();
    		location.href = '${download}?file_no=' + file_no;
    	
     	});
    		
    		 
    	
    });

     

     

    td 를 구분하여 형제 선택

          $('.memberList tr td:gt(0)').on('click', function() {
             var id = $(this).parent().find('td:eq(1)').text();
             location.href = '/admin/member/memberView.do?mem_id='+id;
          });

    댓글

Designed by Tistory.