JavaScript에서는 테이블의
일반적으로 다음 방법을 사용하여 HTML 테이블에서
테이블에 ID 속성이 있으면 문서를 사용할 수 있습니다. getElementById() 메소드는
<table id="myTable"> <tr> <td>第一行</td> </tr> <tr> <td>第二行</td> </tr> <tr> <td>第三行</td> </tr> </table> <script> const firstRow = document.getElementById("myTable").rows[0]; console.log(firstRow); </script>
이 예에서는 document.getElementById() 메서드를 사용하여 ID 속성이 "myTable"인 테이블 요소를 가져왔습니다. 그런 다음 .rows[] 배열을 사용하여 테이블의 행에 액세스하고 첫 번째 행을 firstRow 변수에 저장합니다. 마지막으로 콘솔에서 firstRow를 출력하면
테이블의 일부 행에 동일한 클래스 이름이 있는 경우 document.getElementsByClassName() 메서드를 사용하여 해당 행의
<table> <tr class="row-one"> <td>第一行</td> </tr> <tr class="row-two"> <td>第二行</td> </tr> <tr class="row-one"> <td>第三行</td> </tr> </table> <script> const rowOnes = document.getElementsByClassName("row-one"); console.log(rowOnes); </script>
이 예에서는 document.getElementsByClassName() 메서드를 사용하여 클래스 이름이 "row-one"인 모든
document.getElementsByTagName() 메서드를 통해 테이블의
<table> <tr> <td>第一行</td> </tr> <tr> <td>第二行</td> </tr> <tr> <td>第三行</td> </tr> </table> <script> const rows = document.getElementsByTagName("tr"); console.log(rows); </script>
이 예에서는 document.getElementsByTagName() 메서드를 사용하여 테이블의 모든
위 메소드 외에도 다음 기술을 사용하여
querySelector() 메소드를 사용하여 단일 요소를 선택할 수 있습니다. CSS 선택기를 기반으로 하는 요소입니다. 다음은 샘플 코드입니다.
<table> <tr> <td>第一行</td> </tr> <tr> <td>第二行</td> </tr> <tr> <td>第三行</td> </tr> </table> <script> const firstRow = document.querySelector("tr"); console.log(firstRow); </script>
이 예에서는 querySelector() 메서드를 사용하여 테이블의 첫 번째
querySelectorAll() 메서드를 사용하여 CSS 선택기를 기반으로 여러 요소를 선택할 수도 있습니다. 다음은 샘플 코드입니다.
<table> <tr class="row-one"> <td>第一行</td> </tr> <tr class="row-two"> <td>第二行</td> </tr> <tr class="row-one"> <td>第三行</td> </tr> </table> <script> const rowOnes = document.querySelectorAll(".row-one"); console.log(rowOnes); </script>
이 예에서는 querySelectorAll() 메서드를 사용하여 테이블에서 클래스 이름이 "row-one"인 모든
요약:
JavaScript에서
위 내용은 자바스크립트에서 tr을 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!