HTML | DOM Ubicación href Propiedad

La propiedad Location href en HTML se usa para establecer o devolver la URL completa de la página actual. La propiedad Location href también se puede usar para establecer el punto de valor href en otro sitio web o en una dirección de correo electrónico. La propiedad Location href devuelve una string que contiene la URL completa de la página, incluido el protocolo. 

Sintaxis:

  • Devuelve la propiedad href.
location.href
  • Se utiliza para establecer la propiedad href.
location.href = URL

Los siguientes programas ilustran la propiedad Location href en HTML: 

Ejemplo 1: 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>DOM Location href Property</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM Location href Property</h2>
    <p>
      For returning the entire URL current page,
      double click the "Return URL" button:
    </p>
    <button ondblclick="myhref()">Return URL</button>
    <p id="href"></p>
    <script>
        function myhref() {
            var h = location.href;
            document.getElementById("href").innerHTML = h;
        }
    </script>
</body>
 
</html>

Producción:

  

Después de hacer clic en el botón:

  

Ejemplo 2: establezca el valor href para apuntar a otra URL del sitio web. 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>DOM Location href Property</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM Location href Property</h2>
    <p>
      For redirecting to GeeksforGeeks homepage,
      double click the "Redirect" button:
    </p>
    <button ondblclick="myhref()">Redirect</button>
    <script>
        function myhref() {
            location.href =
              "https://www.geeksforgeeks.org";
        }
    </script>
</body>
 
</html>

Producción:

  

Después de hacer clic en el botón:

  

Navegadores compatibles: los navegadores compatibles con Location href Property 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *