Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Interface DOMImplementation
[go: Go Back, main page]

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