버튼 클릭 시 동적으로 table row (tr) 생성 및 제거
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
|
<script type='text/javascript'>
var mainTable = document.getElementById('mainTable');
var mainTableBody = mainTable.getElementsByTagName('tbody')[0];
var rowCount = mainTableBody.rows.length;
function addRow() {
rowCount = rowCount + 1;
// refChild null이어도 마지막 리스트에 추가
mainTableBody.insertBefore(mainTableBody.rows[0].cloneNode(true), mainTable.rows[rowCount]);
console.log(rowCount);
}
function removeRow() {
if(rowCount < 2) {
alert("그만 지워");
} else {
rowCount = rowCount - 1;
mainTableBody.deleteRow(rowCount);
}
console.log(rowCount);
}
</script>
|
Node.insertBefore()
- 참조된 노드 앞에 특정 부모 노드의 자식 노드를 삽입한다.
- var insertedNode = parentNode.insertBefore(newNode, referenceNode);
참조 : developer.mozilla.org/ko/docs/Web/API/Node/insertBefore
'공부 > Java Script' 카테고리의 다른 글
[node] console.log 시간 정보 추가하기 console-stamp (0) | 2021.01.10 |
---|