目录

HTML DOM td 对象


表数据对象

TableData 对象表示 HTML <td> 元素。

访问 TableData 对象

您可以使用 getElementById() 访问 <td> 元素:

示例

var x = document.getElementById("myTd");
亲自试一试 »

提示:您还可以通过搜索来访问 <td> 元素单元格表行的集合。

创建一个表数据对象

您可以使用 document.createElement() 方法创建 <td> 元素:

示例

var x = document.createElement("TD");
亲自试一试 »


表数据对象属性

Property Description
abbr Not supported in HTML5.
Sets or returns the value of the abbr attribute
align Not supported in HTML5. Use style.textAlign instead.
Sets or returns the horizontal alignment of the content in a data cell
axis Not supported in HTML5.
Sets or returns a comma-separated list of related data cells
background Not supported in HTML5. Use style.background instead.
Sets or returns the background image of a data cell
bgColor Not supported in HTML5. Use style.backgroundColor instead.
Sets or returns the background color of a table
cellIndex Returns the position of a cell in the cells collection of a table row
ch Not supported in HTML5.
Sets or returns an alignment character for a data cell
chOff Not supported in HTML5.
Sets or returns the horizontal offset of the ch property
colSpan Sets or returns the value of the colspan attribute
headers Sets or returns the value of the headers attribute
height Not supported in HTML5. Use style.height instead.
Sets or returns the height of a data cell
noWrap Not supported in HTML5. Use style.whiteSpace instead.
Sets or returns whether the content in a cell can be wrapped
rowSpan Sets or returns the value of the rowspan attribute
vAlign Not supported in HTML5. Use style.verticalAlign instead.
Sets or returns the vertical alignment of the content within a cell
width Not supported in HTML5. Use style.width instead.
Sets or returns the width of a data cell

标准属性和事件

TableData 对象还支持标准特性事件


相关页面

HTML 教程:HTML 表格

HTML 参考:HTML <td> 标签