blob: ef548d318b335de1410c6554e45897a133e0b7b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
---
title: HTMLTableRowElement.rowIndex
slug: Web/API/HTMLTableRowElement/rowIndex
translation_of: Web/API/HTMLTableRowElement/rowIndex
---
<div><font><font>{{APIRef("HTML DOM")}}</font></font></div>
<p><font><font>的</font></font><strong><code>HTMLTableRowElement.rowIndex</code></strong><font><font>只读属性表示一个行相对于整个位置的{{HtmlElement("table")}}。</font></font></p>
<p><font><font>即使{{HtmlElement("thead")}},{{HtmlElement("tbody")}}和{{HtmlElement("tfoot")}}}的元素在HTML中乱序显示,浏览器也会以正确的顺序。</font><font>因此,行数从</font></font><code><thead></code><font><font>到</font></font><code><tbody></code><font><font>,从</font></font><code><tbody></code><font><font>到</font></font><code><tfoot></code><font><font>。</font></font></p>
<h2 id="句法"><font><font>句法</font></font></h2>
<pre class="syntaxbox notranslate"><font><font>var </font></font><em><font><font>index</font></font></em><font><font> = </font></font><em><font><font>HTMLTableRowElement</font></font></em><font><font> .rowIndex</font></font></pre>
<h3 id="值"><font><font>值</font></font></h3>
<p><font><font>返回该行的索引,或者</font></font><code>-1</code><font><font>如果该行不属于表的一部分,则</font><font>返回该索引</font><font>。</font></font></p>
<h2 id="例"><font><font>例</font></font></h2>
<p><font><font>本示例使用JavaScript标记表中的所有行号。</font></font></p>
<h3 id="的HTML"><font><font>的HTML</font></font></h3>
<pre class="brush: html notranslate"><font><font><表格></font></font><font><font>
<thead></font></font><font><font>
<tr> <th>商品</ th> <th>价格</ th> </ tr></font></font><font><font>
</ thead></font></font><font><font>
<身体></font></font><font><font>
<tr> <td>香蕉</ td> <td> $ 2 </ td> </ tr></font></font><font><font>
<tr> <td>橙色</ td> <td> $ 8 </ td> </ tr></font></font><font><font>
<tr> <td>顶级沙朗</ td> <td> $ 20 </ td> </ tr></font></font><font><font>
</ tbody></font></font><font><font>
<脚></font></font><font><font>
<tr> <td>总计</ td> <td> $ 30 </ td> </ tr></font></font><font><font>
</ tfoot></font></font><font><font>
</ table></font></font></pre>
<h3 id="的JavaScript"><font><font>的JavaScript</font></font></h3>
<pre class="brush: js notranslate"><font><font>让行= document.querySelectorAll('tr');</font></font>
<font><font>
rows.forEach((row)=> {</font></font><font><font>
让z = document.createElement(“ td”);</font></font><font><font>
z.textContent =`(row#$ {row.rowIndex})`;</font></font><font><font>
row.appendChild(z);</font></font><font><font>
});</font></font></pre>
<h3 id="结果"><font><font>结果</font></font></h3>
<p><font><font>{{EmbedLiveSample("Example")}}</font></font></p>
<h2 id="浏览器兼容性"><font><font>浏览器兼容性</font></font></h2>
<p><font><font>{{Compat("api.HTMLTableRowElement.rowIndex")}}</font></font></p>
|