HTML DOM 테이블 객체는 HTML 문서의
속성 | 설명 |
---|---|
캡션 | HTML 문서에서 테이블의 |
발발 | HTML 문서에서 테이블의 |
머리 | HTML 문서에서 테이블의 요소를 반환합니다. |
방법
다음은 테이블 객체의 메소드입니다 -
메소드 | 설명 | ||||||||
---|---|---|---|---|---|---|---|---|---|
createCaption() | 빈 | ||||||||
createTFoot() | 빈 | ||||||||
createTHad() | 빈 요소를 생성하여 테이블에 추가합니다. deleteCaption() | 테이블에서 첫 번째 | deleteRow() | 테이블에서 | deleteThead() | 테이블에서 요소를 삭제합니다. | TFoot() 삭제 | 테이블에서 | |
insertRow() | 빈 | ||||||||
예시
테이블 개체의 예를 살펴보겠습니다 −
<!DOCTYPE html> <html> <head> <style> body { text-align: center; background-color: #fff; color: #0197F6; } h1 { color: #23CE6B; } .btn { background-color: #fff; border: 1.5px dashed #0197F6; height: 2rem; border-radius: 2px; width: 60%; margin: 2rem auto; display: block; color: #0197F6; outline: none; cursor: pointer; } </style> </head> <body> <h1>DOM table Object Demo</h1> <button onclick="createTable()" class="btn">Create a table object</button> <script> function createTable() { var table = document.createElement("TABLE"); table.innerHTML = `<tr> <td>Data 1</td> <td>Data 2</td> </tr> <tr> <td>Data 3</td> <td>Data 4</td> </tr>`; table.setAttribute('border', "2"); table.style.margin = "2rem auto"; document.body.appendChild(table); } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"표 개체 만들기를 클릭합니다. ” 버튼을 눌러 테이블 개체를 만듭니다.