Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 테이블 행 컬렉션

<시간/>

HTML DOM 테이블 행 컬렉션은 HTML 문서에 있는 테이블의 모든 요소 컬렉션을 반환합니다.

구문

다음은 구문입니다 -

object.rows

행 컬렉션의 속성

HTML 문서의 컬렉션에 있는 요소.

요소의 수를 반환합니다.
속성
설명
길이
HTML 문서의 컬렉션에 있는

행 수집 방법

컬렉션의 요소 컬렉션의 요소입니다. 컬렉션의 요소

요소를 반환합니다.

요소를 반환합니다.
요소를 반환합니다.
메소드
설명
[인덱스]
컬렉션에서 지정된 인덱스
항목(색인)
컬렉션에서 지정된 인덱스
namedItem(id)
컬렉션에서 지정된 id

HTML DOM 테이블 행 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 rows 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>
</table>
<button onclick="get()" class="btn">Get Number of Rows</button>
<div class="show"></div>
<script>
   function get() {
      var table = document.querySelector('table');
      document.querySelector('.show').innerHTML = 'Number of rows : ' + table.rows.length;
   }
</script>
</body>
</html>

출력

HTML DOM 테이블 행 컬렉션

"행 수 가져오기를 클릭합니다. ” 버튼을 눌러 컬렉션에서 요소의 수를 가져옵니다.

HTML DOM 테이블 행 컬렉션