jQuery를 사용하여 동적 테이블의 특정 행을 삭제하는 방법
$(document).on('click','.delbtn',function(){
$(this).closest('tr').remove();
});
반응형
'프로그래밍 언어 > Javascript' 카테고리의 다른 글
form 데이터 전송 / 동적 생성된 객체도 form 으로 전송 (0) | 2021.04.15 |
---|---|
[jquery] 동적 객체 추가 후 datepicker() 사용하기 (0) | 2021.04.14 |
[url 인코딩/ 디코딩] encodeURI(), encodeURIComponent(), decodeURI(), decodeURIComponent() (0) | 2021.04.13 |
jquery string 으로 url 넘길 때 특수문자 사라지는 현상 해결(encodeURICpmponent) (0) | 2021.04.12 |
[javascript] table row text 가져오기 (table td text ,tr text 데이터) (0) | 2021.04.12 |