La propiedad Location hostname en HTML se usa para devolver el nombre de host de la URL actual. La propiedad Location hostname devuelve una string que contiene el nombre de dominio o la dirección IP de una URL.
Sintaxis:
- Devuelve la propiedad de nombre de host.
location.hostname
- Se utiliza para establecer la propiedad de nombre de host.
location.hostname = hostname
El siguiente programa ilustra la propiedad de nombre de host de ubicación en HTML:
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>DOM Location hostname Property</title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>DOM Location hostname Property</h2> <p> For returning the hostname of the current URL, double click the "Return hostname" button: </p> <button ondblclick="myhost()"> Return hostname </button> <p id="hostname"></p> <script> function myhost() { var h = location.hostname; document.getElementById("hostname").innerHTML = h; } </script> </body> </html>
Producción:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad Location hostname se enumeran a continuación:
- Google cromo 1
- Borde 12
- explorador de Internet 3
- Firefox 1
- Ópera 12.1
- Safari 1
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA