La propiedad de implementación DOM en HTML se usa para devolver el objeto DOMImplementation asociado con el documento actual. La implementación de DOMI es la interfaz que representa un método que proporciona el objeto que no depende de ningún documento en particular.
Sintaxis:
document.implementation
Valor devuelto: Devuelve el objeto de implementación del documento.
Ejemplo 1:
html
<!-- HTML code to check the document has HTML DOM 1.0 feature --> <!DOCTYPE html> <html> <head> <title> HTML DOM implementation Property </title> <script> function DomFunction() { var obj = document.implementation; document.getElementById("demo").innerHTML = obj.hasFeature("HTML", "1.0"); } </script> </head> <body> <h2>HTML DOM implementation Property</h2> <p>Click on button to check the document has HTML DOM 1.0 feature</p> <button onclick = "DomFunction()"> Click Here! </button> <p id = "demo"></p> </body> </html>
Salida: Antes Haga clic en el botón:
Después de hacer clic en el botón:
Ejemplo 2:
html
<!DOCTYPE html> <html> <head> <title> HTML DOM implementation Property </title> </head> <body> <h2>HTML DOM implementation Property</h2> <script> var DOM_Name = "HTML"; var DOM_Ver = "1.0"; var GFG = document.implementation.hasFeature( DOM_Name, DOM_Ver); alert( "DOM " + DOM_Name + " " + DOM_Ver + " supported? " + GFG ); </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con la propiedad de implementación DOM se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Internet Explorer 6 y superior
- Firefox 1 y superior
- Ópera 12.1 y superior
- Safari 1 y superior
Publicación traducida automáticamente
Artículo escrito por AlieaRizvi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA