본문 바로가기
프론트엔드/Javascript

jQuery를 사용하여 동적 테이블의 특정 행(tr,td)을 삭제하는 방법 (동적으로 행 삭제)

by 작은소행성 2021. 4. 14.

jQuery를 사용하여 동적 테이블의 특정 행을 삭제하는 방법 

 

 

$(document).on('click','.delbtn',function(){
	$(this).closest('tr').remove();
});

 

 

 

반응형