HTML DOM 表格行集合
HTML DOM 表格行集合返回 HTML 文件中表格的所有 <tr> 元素的集合。
語法
以下是語法 −
object.rows
行集合的屬性
HTML 文件中集合中的元素。
屬性 | 說明 |
---|---|
length | 它返回 HTML 文件中集合中 <tr> 元素的數量。 |
行集合的方法
集合中的元素集合中的元素。集合中的元素
方法 | 說明 |
---|---|
[index] | 它返回集合中指定索引的 <tr> 元素。 |
item(index) <tr> | 它返回集合中指定索引的 <tr> 元素。 |
namedItem(id) | 它返回集合中指定的 id <tr> 元素 |
讓我們看一個 HTML DOM 表格行集合的示例 −
示例
<!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>
輸出
單擊“獲取行數”按鈕以獲取集合中 <tr> 元素的數量。
廣告