Interface DOMImplementation

継承元:
(無し)
プロパティ:
メソッド:
createDocument, createDocumentType, hasFeature

DOMImplementation インターフェイスは、文書オブジェクトモデルの個々のインスタンスから独立した操作を実行する多くのメソッドを提供する。

メソッド:

IDL 定義:

interface DOMImplementation {
  boolean            hasFeature(in DOMString feature,
                                in DOMString version);
  // Introduced in DOM Level 2:
  DocumentType       createDocumentType(in DOMString qualifiedName,
                                        in DOMString publicId,
                                        in DOMString systemId)
                                        raises(DOMException);
  // Introduced in DOM Level 2:
  Document           createDocument(in DOMString namespaceURI,
                                    in DOMString qualifiedName,
                                    in DocumentType doctype)
                                        raises(DOMException);
};


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