diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/htmltableelement/rows | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/htmltableelement/rows')
-rw-r--r-- | files/ja/web/api/htmltableelement/rows/index.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/files/ja/web/api/htmltableelement/rows/index.html b/files/ja/web/api/htmltableelement/rows/index.html new file mode 100644 index 0000000000..b201809a2e --- /dev/null +++ b/files/ja/web/api/htmltableelement/rows/index.html @@ -0,0 +1,29 @@ +--- +title: HTMLTableElement.rows +slug: Web/API/HTMLTableElement/rows +tags: + - DOM + - Gecko + - Gecko DOM Reference +translation_of: Web/API/HTMLTableElement/rows +--- +<div> + {{ApiRef}}</div> +<h2 id="Summary" name="Summary">概要</h2> +<p><strong>rows</strong> は、テーブル内の全ての<a href="/ja/docs/DOM/tableRow" title="DOM/tableRow">行</a>のコレクションを返します。</p> +<h2 id="Syntax" name="Syntax">構文</h2> +<pre class="syntaxbox"><i>HTMLCollectionObject</i> = table.rows</pre> +<h2 id="Example" name="Example">例</h2> +<pre class="brush:js">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 の最後の行</pre> +<h2 id="Notes" name="Notes">注記</h2> +<p>Table オブジェクトの rows プロパティによって返されるコレクションには {{htmlelement("thead")}} 内、{{htmlelement("tfoot")}} 内、{{htmlelement("tfoot")}} 内、{{htmlelement("tbody")}} 内の、全ての行が含まれます。</p> +<p>テーブルセクション要素 (<code>thead</code>、<code>tfoot</code>、<code>tbody</code>) の <code>rows</code> プロパティには、そのテーブルセクション要素の行のみが含まれます。</p> +<h2 id="Specification" name="Specification">仕様書</h2> +<ul> + <li><a href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-6156016">rows</a></li> + <li><a href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-75708506">HTMLcollection</a></li> +</ul> |