 Loading...
Class DOMImplementation
Represents an implementation object.
Members Table
The following table lists the members exposed by the DOMImplementation object.
|
Show:
|
Property |
Type |
Readonly |
Description |
Method |
Returns |
Description |
createDocument
|
Document
|
Creates a Document object of the specified type with its document element.
|
Sytaxis:
object.createDocument(namespaceURI, QName, documentType) Arguments:
Name |
Type |
O/R |
Description |
namespaceURI |
String |
Required |
The namespace URI of the document element to create or null. |
QName |
String |
Required |
The qualified name of the document element to be created or null. |
documentType |
DocumentType
|
Required |
The type of document to be created or null. |
|
createDocumentType
|
DocumentType
|
Creates an empty DocumentType node. |
Sytaxis:
object.createDocumentType(QName, publicId, systemId) Arguments:
Name |
Type |
O/R |
Description |
QName |
String |
Required |
The qualified name of the document type to be created. |
publicId |
String |
Required |
The external subset public identifier. |
systemId |
String |
Required |
The external subset system identifier. |
|
hasFeature
|
Boolean |
Test if the DOM implementation implements a specific feature and version. |
Sytaxis:
object.hasFeature(feature, version) Arguments:
Name |
Type |
O/R |
Description |
feature |
String |
Required |
The name of the feature requested. |
version |
String |
Required |
The version number of the feature to test. |
|
Event |
B |
C |
Interface |
Description |
Constant |
Value |
Description |
|
|