이 문서는 아직 자원 봉사자들이 한국어로 번역하지 않았습니다. 함께 해서 번역을 마치도록 도와 주세요!
The DOMImplementation
interface represent an object providing methods which are not dependent on any particular document. Such an object is returned by the Document.implementation
property.
Property
This interface has no specific property and doesn't inherit any.
Methods
No inherited method.
DOMImplementation.createDocument()
- Creates and returns an
XMLDocument
. DOMImplementation.createDocumentType()
- Creates and returns a
DocumentType
. DOMImplementation.createHTMLDocument()
- Creates and returns an HTML
Document
. DOMImplementation.hasFeature()
- Returns a
Boolean
indicating if a given feature is supported or not. This function is unreliable and kept for compatibility purpose alone: except for SVG-related queries, it always returnstrue
. Old browsers are very inconsistent in their behavior.
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'DOMImplementation' in that specification. |
Living Standard | Removed the getFeature() method.Added the createHTMLDocument() method.Modified the return type of createDocument() from Document to XMLDocument . |
Document Object Model (DOM) Level 3 Core Specification The definition of 'DOMImplementation' in that specification. |
Recommendation | Added the getFeature() method (never implemented by any user agent). |
Document Object Model (DOM) Level 2 Core Specification The definition of 'DOMImplementation' in that specification. |
Recommendation | Added the createDocument() and createDocumentType() methods. |
Document Object Model (DOM) Level 1 Specification The definition of 'DOMImplementation' in that specification. |
Recommendation | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1.0 | 1.0 (1.7 or earlier) | 6.0 | (Yes) | (Yes) |
createHTMLDocument() |
(Yes) | 4.0 (2.0) | 9.0 | (Yes) | (Yes) |
createDocument() |
(Yes) | 1.0 (1.7 or earlier) | 9.0 | (Yes) | (Yes) |
hasFeature() |
(Yes) | 1.0 (1.7 or earlier) [1] | 6.0 | (Yes) | (Yes) |
createDocumentType() |
(Yes) | 1.0 (1.7 or earlier) | 9.0 | (Yes) | (Yes) |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
createHTMLDocument() |
(Yes) | 4.0 (2.0) | (Yes) | (Yes) | (Yes) |
createDocument() |
(Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
hasFeature() |
(Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
createDocumentType() |
(Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
[1] Since Gecko 19, hasFeature()
mostly returns true
.