HTMLTableSectionElement

HTMLTableSectionElement 接口提供了一些属性和方法 (除了常见的对象 HTMLElement 接口提供的属性和方法通过继承也能获取到) 来操作 html 表中的部分 (即页眉、页脚和正文) 的布局和呈现。

 

HTMLTableSectionElement()

继承层次

Object.prototype
 Function.prototype
  EventTarget
   Node
    Element
     HTMLElement
      HTMLTableSectionElement

构造函数

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

属性列表

属性说明
--

方法列表

语法说明
--

HTMLTableSectionElement.prototype

继承层次

Object.prototype
 EventTarget.prototype
  Node.prototype
   Element.prototype
    HTMLElement.prototype
     HTMLTableSectionElement.prototype

属性列表

从父元素继承的属性, HTMLElement

属性说明
rows 只读,返回一个包含live htmlcollection节中的行。这live htmlcollection并自动更新行时,添加或移除。

方法列表

继承了父对象 HTMLElement 的方法。

语法说明
deleteRow()移除该节中给定位置的单元格。如果给定位置大于该节中的行数 (或等于零开始), 则它会引发一个具有 IndexSizeError 值的 DOMException。
insertRow()在节中的给定位置之前插入新行。如果给定的位置没有给定或为-1, 则它将该行追加到节的末尾。如果给定位置大于该节中的行数 (或等于零开始), 则它会引发一个具有 IndexSizeError 值的 DOMException。

HTMLTableSectionElement实例

Object.prototype
 EventTarget.prototype
  Node.prototype
   Element.prototype
    HTMLElement.prototype
     HTMLTableSectionElement.prototype
      <tbody> 元素
      <tfoot> 元素
      <thead> 元素

参考