Interface HTMLIFrameElement

継承元:
HTMLElement
プロパティ:
align, contentDocument, frameBorder, height, longDesc, marginHeight, marginWidth, name, scrolling, src, width
メソッド:

行内サブウィンドウ。 HTML 4.01 の IFRAME 要素の定義 を参照。

プロパティ:

IDL 定義:

interface HTMLIFrameElement : HTMLElement {
           attribute DOMString       align;
           attribute DOMString       frameBorder;
           attribute DOMString       height;
           attribute DOMString       longDesc;
           attribute DOMString       marginHeight;
           attribute DOMString       marginWidth;
           attribute DOMString       name;
           attribute DOMString       scrolling;
           attribute DOMString       src;
           attribute DOMString       width;
  // Introduced in DOM Level 2:
  readonly attribute Document        contentDocument;
};


TAKI <oz-07ams@mvh.biglobe.ne.jp>