La propiedad de título DOM se usa para devolver el título del documento HTML y también para establecer el valor del título en el documento. Esta propiedad se utiliza para especificar la información sobre el título.
Sintaxis:
- Se utiliza para devolver la propiedad del título.
document.title
- Se utiliza para establecer la propiedad del título.
document.title = newTitle
Propiedad: la propiedad de título DOM contiene un valor de nuevo título que se utiliza para devolver el título de un documento.
Valor devuelto: Devuelve un valor de string que representa el título del valor del elemento.
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title>DOM title Property</title> <style> h1 { color:green; } body { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>DOM title Property</h2> <button onclick="geeks()">Submit</button> <p id="sudo"></p> <script> function geeks() { var x = document.title; document.getElementById("sudo").innerHTML = x; } </script> </body> </html>
Producción:
Ejemplo 2:
html
<!DOCTYPE html> <html> <head> <title>DOM title Property</title> <style> h1 { color:green; } body { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>DOM title Property</h2> <button onclick="geeks()">Submit</button> <p id="sudo"></p> <script> function geeks() { document.getElementById("sudo").innerHTML = "New DOM Title"; } </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con la propiedad del título DOM se enumeran a continuación:
- Google cromo 1
- Borde 12
- explorador de Internet 4
- 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