Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLTableElement.rows

概要

rows は、テーブル内の全てののコレクションを返します。

構文

HTMLCollectionObject = table.rows

var mytable = document.getElementById("mytable");

var myrows = mytable.rows; // mytable の行コレクション
var firstRow = mytable.rows[0]; // mytable の最初の行
var lastRow = mytable.rows[ mytable.rows.length - 1 ]; // mytable の最後の行

注記

Table オブジェクトの rows プロパティによって返されるコレクションには <thead> 内、<tfoot> 内、<tfoot> 内、<tbody> 内の、全ての行が含まれます。

テーブルセクション要素 (theadtfoottbody) の rows プロパティには、そのテーブルセクション要素の行のみが含まれます。

仕様書

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, soumya, ethertank
 最終更新者: soumya,