| Funktionen des Objekttyps DOMImplementation |
| Funktion | |
Bedeutung |
| createDocument(namespaceURI,qualifiedName,doctype) | |
generiert ein neues Document-Objekt
Attribute:
namespaceURI (string)
qualifiedName (string)
doctype (object (DocumentType))
Rückgabewert:
neues Objekt (object (Document))
|
| createDocumentType(qualifiedName,publicId,systemId) | |
generiert ein neues DocumentType-Objekt
Attribute:
qualifiedName (string)
publicId (string)
systemId (string)
Rückgabewert:
neues Objekt (object (DocumentType))
|
| getFeature(feature,version) | |
gibt das erfragte Feature als Objekt zurück
Attribute:
feature (string)
version (string)
Rückgabewert:
das Feature (object (Node))
|
| hasFeature(feature,version) | |
erfragt, ob ein Feature verfügbar ist
Attribute:
feature (string)
version (string)
Rückgabewert:
true oder false (Boolean)
|