Interface HTMLTableElement

継承元:
HTMLElement
プロパティ:
align, bgColor, border, caption, cellPadding, cellSpacing, frame, rows, rules, summary, tBodies, tFoot, tHead, width
メソッド:
createCaption, createTFoot, createTHead, deleteCaption, deleteRow, deleteTFoot, deleteTHead, insertRow

テーブルの create* メソッドと delete* メソッドは、著者に表の構築と修正を許可する。 [HTML 4.01] は、テーブル内に CAPTION, THEAD, TFOOT 要素がそれぞれ一つだけ存在しうると規定している。それゆえ、それが存在していて createTHead() メソッドや createTFoot() メソッドが呼ばれる場合は、メソッドは既存の THead 要素または TFoot 要素を返す。 HTML 4.01 の TABLE 要素の定義 を参照。

プロパティ:

メソッド:

IDL 定義:

interface HTMLTableElement : HTMLElement {
  // Modified in DOM Level 2:
           attribute HTMLTableCaptionElement caption;
                                        // raises(DOMException) on setting
  // Modified in DOM Level 2:
           attribute HTMLTableSectionElement tHead;
                                        // raises(DOMException) on setting
  // Modified in DOM Level 2:
           attribute HTMLTableSectionElement tFoot;
                                        // raises(DOMException) on setting
  readonly attribute HTMLCollection  rows;
  readonly attribute HTMLCollection  tBodies;
           attribute DOMString       align;
           attribute DOMString       bgColor;
           attribute DOMString       border;
           attribute DOMString       cellPadding;
           attribute DOMString       cellSpacing;
           attribute DOMString       frame;
           attribute DOMString       rules;
           attribute DOMString       summary;
           attribute DOMString       width;
  HTMLElement        createTHead();
  void               deleteTHead();
  HTMLElement        createTFoot();
  void               deleteTFoot();
  HTMLElement        createCaption();
  void               deleteCaption();
  // Modified in DOM Level 2:
  HTMLElement        insertRow(in long index)
                                        raises(DOMException);
  // Modified in DOM Level 2:
  void               deleteRow(in long index)
                                        raises(DOMException);
};


Issued: / Revised: / All rights reserved. © 2002-2016 TAKI