目录

HTMLTableCellElement

HTMLTableCellElement 接口可提供特殊属性 (除了常见的对象 HTMLElement 接口提供的属性和方法通过继承也能获取到)来处理 HTML 文档中表单元格的布局和表示形式, 即页眉或数据单元格。

 

HTMLTableCellElement()

继承层次

Object.prototype
 Function.prototype
  EventTarget
   Node
    Element
     HTMLElement
      HTMLTableCellElement

构造函数

程序不能直接调用该构造函数,否则将会产生异常。

属性列表

属性说明
--

方法列表

语法说明
--

HTMLTableCellElement.prototype

继承层次

Object.prototype
 EventTarget.prototype
  Node.prototype
   Element.prototype
    HTMLElement.prototype
     HTMLTableCellElement.prototype

属性列表

从父元素继承的属性, HTMLElement

属性说明
colSpan是一个 unsigned long 表示此单元格必须跨越的列数的 。它反映了 colspan 属性。
rowSpan是一个 unsigned long 表示此单元格必须跨越的行数的 。它反映了 rowspan 属性。
headers 只读, 是一个 DOMSettableTokenList 描述 <th> 元素的 id 列表, 它表示与单元格关联的标头。它反映了标题属性.
cellIndex 只读, 表示单元格集合中 <tr> 所属的单元格位置。如果该单元格不属于 <tr>, 则返回 -1.

方法列表

没有特殊的方法; 继承了父对象 HTMLElement 的方法。

语法说明
--

HTMLTableCellElement实例

Object.prototype
 EventTarget.prototype
  Node.prototype
   Element.prototype
    HTMLElement.prototype
     HTMLTableCellElement.prototype
      HTMLTableCellElement 实例

参考

相关页面

外部链接