La propiedad doctype DOM se utiliza para devolver el tipo de documento de cualquier documento HTML. El objeto DocumentType es la propiedad de nombre utilizada para devolver el nombre del objeto. Si no hay un tipo de documento declarado en el documento, devuelve un valor nulo.
Sintaxis:
document.doctype
Ejemplo:
html
<!DOCTYPE html.5> <html> <head> <title>DOM doctype Property</title> <style> h1, h2 { color:green; font-weight:bold; text-align:center; } body { text-align:center; } </style> </head> <body style="text-align:center;"> <h1>GeeksForGeels</h1> <h2>DOM doctype Property</h2> <button onclick="geeks()">Submit</button> <p id="sudo"></p> <script> function geeks() { var gfg = document.doctype.name; document.getElementById("sudo").innerHTML = gfg; } </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con la propiedad DOM doctype se enumeran a continuación:
- Google cromo 1
- Borde 12
- explorador de Internet 6
- Firefox 1
- Ópera 12.1
- Safari 1
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA