Interface HTMLDocument

継承元:
Document
プロパティ:
URL, anchors, applets, body, cookie, domain, forms, images, links, referrer, title
メソッド:
close, getElementsByName, open, write, writeln

HTMLDocument は HTML 階層のルートであり内容全体を保持する。加えて階層へのアクセスを提供し、文書から若干の情報にアクセスするためのいくつかの 簡便 メソッドも提供する。

次のプロパティは非推奨であり、 BODY 要素の相当するプロパティが望ましい:

Note: DOM Level 2 では, メソッド getElementByIdDocument インターフェイスに移動し、そこから継承される。

プロパティ:

メソッド:

IDL 定義:

interface HTMLDocument : Document {
           attribute DOMString       title;
  readonly attribute DOMString       referrer;
  readonly attribute DOMString       domain;
  readonly attribute DOMString       URL;
           attribute HTMLElement     body;
  readonly attribute HTMLCollection  images;
  readonly attribute HTMLCollection  applets;
  readonly attribute HTMLCollection  links;
  readonly attribute HTMLCollection  forms;
  readonly attribute HTMLCollection  anchors;
           attribute DOMString       cookie;
                                        // raises(DOMException) on setting
  void               open();
  void               close();
  void               write(in DOMString text);
  void               writeln(in DOMString text);
  NodeList           getElementsByName(in DOMString elementName);
};


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