반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- jQuery
- react
- Python
- 코로나19
- Github
- 나이키
- oracle
- stockx.com
- 드로우
- 주식
- 오라클
- 덩크로우
- 파이썬
- 리액트
- dunklow
- 발매예정
- Dunk Low
- draw
- 덩크 로우
- JavaScript
- 주식공부
- 리눅스
- sacai
- Nike
- 제이쿼리
- 덩크 하이
- GIT
- dunk high
- 자바스크립트
- Linux
Archives
- Today
- Total
Life goes slowly...
[jQuery] 체크박스(checkBox)에 체크된 행(Row) 삭제하기 본문
728x90
반응형
자바스크립트의 제이쿼리(jQuery)를 사용하여 목록 List의 데이터중에 체크박스(checkBox)에 체크된 행(Row)을 삭제하는 방법입니다.
체크박스(checkBox)의 체크된 행 삭제하기
<div class="row">
<button type="button" id="delBtn">삭제</button>
<table width="100%">
<thead>
<tr>
<th>선택</th>
<th>No. </th>
<th>아이디</th>
<th>이메일</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" name="Chk_list" ></td>
<td>1</td>
<td>Test01</td>
<td>Test01@gmail.com</td>
</tr>
<tr>
<td><input type="checkbox" name="Chk_list" ></td>
<td>2</td>
<td>test02</td>
<td>test02@naver.com</td>
</tr>
<tr>
<td><input type="checkbox" name="Chk_list" ></td>
<td>3</td>
<td>test03</td>
<td>test03@gmail.com</td>
</tr>
</tbody>
</table>
</div>
가장 먼저 체크박스(checkBox) 목록 데이터를 반복문으로 체크된 데이터만 조회하여 관련된 상위 엘리먼트(parentElement)를 확인하여 관련돼 행(Row)을 삭제하면 됩니다.
<script>
$('#delBtn').click(function() {
if ($("input:checkbox[name='Chk_list']:checked").length === 0) {
alert("삭제할 항목을 선택해 주세요.");
return;
}
$("input:checkbox[name='Chk_list']:checked").each(function(k,kVal){
console.log("kVal ::", kVal.parentElement.parentElement.parentElement);
let a = kVal.parentElement.parentElement.parentElement;
$(a).remove();
});
});
</script>
728x90
반응형
'프로그래밍 > Javascript' 카테고리의 다른 글
[TypeScript] 타입스크립트의 기초문법 (0) | 2023.12.04 |
---|---|
[TypeScript] 타입스크립트는 무엇일까? (2) | 2023.12.04 |
[Javascript] 날짜 라이브러리 - moment.js (0) | 2023.02.06 |
[Javascript] 패턴형식 정규식 체크하기(전화번호, 이메일) (0) | 2021.12.21 |
[jQuery] 시간 지연함수 - .delay() 함수 (0) | 2021.09.27 |
[Javascript] 자바스크립트(JS) attr()과 prop() 차이점 (0) | 2021.09.15 |
[jQuery] 현재 요소 및 이전 선택 요소도 함께 선택하기 - .addback() 함수 (0) | 2021.09.13 |
[Javascript] 유니코드로 인코딩하는 함수 - escape() 함수 (0) | 2021.09.08 |
Comments