TableRow cells 集合
页面下方有更多实例。
定义和用法
单元格集合返回表格行中所有 <td> 或 <th> 元素的集合。
注释: 集合中的元素按其在源代码中的显示进行排序。
浏览器支持
集合 | |||||
---|---|---|---|---|---|
cells | Yes | Yes | Yes | Yes | Yes |
语法
tableObject.cells
属性
属性 | 描述 |
---|---|
length | 返回集合中 <td> 和/或 <th> 元素的数量。 注释: 此属性是只读的 |
方法
方法 | 描述 |
---|---|
[index] | 返回集合中指定索引(从 0 开始)对应的 <td> and/or <th> 元素 。 注释: 如果索引号超出范围,则返回 null |
item(index) | 返回集合中指定索引(从 0 开始)对应的 <td> and/or <th> 元素 。 注释: 如果索引号超出范围,则返回 null |
namedItem(id) | 返回集合中指定索引 id 对应的 <td> and/or <th> 元素。 注释: 如果 id 不存在,则返回 null |
技术细节
DOM 版本: | Core Level 2 Document Object |
---|---|
返回值: | 一个 HTMLCollection 对象,表示 <tr> 元素中的所有 <td> 和/或 <th> 元素。 集合中的元素按照它们在源代码中出现的方式排序 |
更多实例
实例
[index]
提醒表格第一行第一个单元格的innerHTML:
alert(document.getElementById("myTable").rows[0].cells[0].innerHTML);
亲自试一试 »
实例
item(index)
提醒表格第一行第一个单元格的innerHTML:
alert(document.getElementById("myTable").rows[0].cells.item(0).innerHTML);
亲自试一试 »
实例
namedItem(id)
在表格的第一行用 id="myTd" 提醒单元格的 innerHTML:
alert(document.getElementById("myTable").rows[0].cells.namedItem("myTd").innerHTML);
亲自试一试 »
实例
更改第一个表格单元格的内容:
var x = document.getElementById("myTable").rows[0].cells;
x[0].innerHTML = "NEW CONTENT";
亲自试一试 »
❮ TableRow 对象