Proprietà XML DOM implementation
Definizione e uso
implementation
L'attributo restituisce l'oggetto DOMImplementation per gestire il documento.
Sintassi
documentObject.implementation
Esempio
Il codice seguente carica "books.xml" nel xmlDoc e restituisce l'oggetto DOMImplementation per gestire il documento:
var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); {} ; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { var xmlDoc = xml.responseXML; document.getElementById("demo").innerHTML = xmlDoc.implementation; {}