"자바스크립트 HTML 테이블 행 추가/삭제"의 두 판 사이의 차이

6번째 줄: 6번째 줄:
==예시==
==예시==
<source lang='html'>
<source lang='html'>
<style> 
table { border-collapse:collapse; } 
th, td { border:1px solid gray; }
</style>
<button onclick="add_row()">행 추가하기</button>
<button onclick="add_row()">행 추가하기</button>
<button onclick="delete_row()">행 삭제하기</button>
<button onclick="delete_row()">행 삭제하기</button>
<table id="mytable" border="2" cellspacing="0">
<hr>
   <th colspan="2">테이블 헤더</th>
<table>
   <thead>
    <th>테이블</th>
    <th>헤더</th>
  </thead>
  <tbody id="my-tbody"></tbody>
</table>
</table>


<script>
<script>
   function add_row() {
   function add_row() {
     mytable = document.getElementById('mytable');
     var my_tbody = document.getElementById('my-tbody');
     // row = mytable.insertRow(1); // 상단에 추가
     // var row = my_tbody.insertRow(0); // 상단에 추가
     row = mytable.insertRow(mytable.rows.length); // 하단에 추가
     var row = my_tbody.insertRow( my_tbody.rows.length ); // 하단에 추가
     cell1 = row.insertCell(0);
     var cell1 = row.insertCell(0);
     cell2 = row.insertCell(1);
     var cell2 = row.insertCell(1);
     cell1.innerHTML = '항목';
     cell1.innerHTML = '항목';
     cell2.innerHTML = '<input type="text" name="strs[]"/>';
     cell2.innerHTML = new Date().toUTCString();
   }
   }


   function delete_row() {
   function delete_row() {
     mytable = document.getElementById('mytable');
     var my_tbody = document.getElementById('my-tbody');
     if (mytable.rows.length < 2) return;
     if (my_tbody.rows.length < 2) return;
     // mytable.deleteRow(1); // 상단부터 삭제
     // my_tbody.deleteRow(0); // 상단부터 삭제
     mytable.deleteRow(mytable.rows.length - 1); // 하단부터 삭제
     my_tbody.deleteRow( my_tbody.rows.length-1 ); // 하단부터 삭제
   }
   }
</script>
</script>
</source>
</source>

2017년 1월 3일 (화) 17:34 판

테이블 tr 추가하기
JavaScript 테이블 행 추가
자바스크립트 table 행 추가
HTML 테이블 행 추가/삭제하기

1 예시

<style>  
table { border-collapse:collapse; }  
th, td { border:1px solid gray; }
</style>

<button onclick="add_row()">행 추가하기</button>
<button onclick="delete_row()">행 삭제하기</button>
<hr>
<table>
  <thead>
    <th>테이블</th>
    <th>헤더</th>
  </thead>
  <tbody id="my-tbody"></tbody>
</table>

<script>
  function add_row() {
    var my_tbody = document.getElementById('my-tbody');
    // var row = my_tbody.insertRow(0); // 상단에 추가
    var row = my_tbody.insertRow( my_tbody.rows.length ); // 하단에 추가
    var cell1 = row.insertCell(0);
    var cell2 = row.insertCell(1);
    cell1.innerHTML = '항목';
    cell2.innerHTML = new Date().toUTCString();
  }

  function delete_row() {
    var my_tbody = document.getElementById('my-tbody');
    if (my_tbody.rows.length < 2) return;
    // my_tbody.deleteRow(0); // 상단부터 삭제
    my_tbody.deleteRow( my_tbody.rows.length-1 ); // 하단부터 삭제
  }
</script>

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}