HTML DOM 테이블 tBodies Collection은 HTML 문서의 테이블에 있는 모든
요소의 컬렉션을 반환합니다.구문
다음은 구문입니다 -
object.tBodies
tBodies 컬렉션의 속성
속성 | 설명 |
---|---|
길이 | HTML 문서의 컬렉션에 있는 |
tBodies 컬렉션의 속성
메소드 | 설명 |
---|---|
[색인] | 컬렉션에서 지정된 인덱스 |
항목(색인) | 컬렉션에서 지정된 인덱스 |
namedItem(id) | 컬렉션에서 지정된 id |
HTML DOM 테이블 tBodies Collection의 예를 살펴보겠습니다 -
예시
<!DOCTYPE html> <html> <style> body { color: #000; background: lightblue; height: 100vh; text-align: center; } table { margin: 2rem auto; } .show { font-size: 1.2rem; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } .show { font-size: 1.2rem; } </style> <body> <h1>DOM Table tBodies Collection Demo</h1> <table border="2"> <thead> <tr> <th>Name</th> <th>Roll No.</th> </tr> <thead> <tbody> <tr> <td>John</td> <td>071717</td> </tr> <tr> <td>Jane</td> <td>031717</td> </tr> </tbody> <tbody> <tr> <td>Elon</td> <td>021717</td> </tr> <tr> <td>Mario</td> <td>011717</td> </tr> </tbody> </table> <button onclick="get()" class="btn">Get Number of table body</button> <div class="show"></div> <script> function get() { var table = document.querySelector('table'); document.querySelector('.show').innerHTML = 'Number of table body element : ' + table.tBodies.length; } </script> </body> </html>
출력
컬렉션에서
요소의 수를 가져오려면 "Get Number of table body" 버튼을 클릭하십시오.