Javascript 参考手册

HTML DOM 对象

Table cells 集合

Table 对象

定义和用法

cells 集合返回表格中所有 <td> 或 <th> 元素。

语法

tableObject.cells

Properties

属性描述
length返回集合中 <td> 或 <th> 元素的数目。

方法

方法描述
[name_or_index]一个整数,指定元素检索位置(从0开始)
item(name_or_index)返回集合中的指定索引的元素
namedItem(name)返回集合中指定名称索引的元素索引

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 cells 集合

实例

实例

下面的例子使用 cells 来显示出第一个单元格的内容:

<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("myTable").rows[0].cells.length);
}
</script>
</head>
<body>

<table id="myTable" border="1">
 <tr>
   <td>cell 1</td>
   <td>cell 2</td>
 </tr>
 <tr>
   <td>cell 3</td>
   <td>cell 4</td>
 </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Show number of cells</button>

</body>
</html>
尝试一下 »

更多实例

弹出第一行的内容

添加行

对齐表格行中的单元格内容

表中的行的单元格内容的垂直对齐

对齐单个单元格的内容

单元格内容的垂直对齐

改变表格单元格的内容

合并单元格

Table 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号