HTMLTableElement.rows

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

We'd love to hear more about your role and the company you work for
Please help us by answering a few questions.

表中所有行的

HTMLTableElement.rows 只读属性返回表中所有行的一个活的 HTMLCollectionHTMLTableElement.rows 包括与之相关的<thead>, <tfoot><tbody> 元素。

Although the property is read-only, the returned object is live and allows the modification of its content.

Syntax

HTMLCollectionObject = table.rows

Example

js
myrows = mytable.rows;
firstRow = mytable.rows[0];
lastRow = mytable.rows[mytable.rows.length - 1];

Specification