HTML | DOM Área href Propiedad

La propiedad Area href en HTML DOM se usa para establecer o devolver el valor del atributo href. Se utiliza para especificar la URL del área. 

Por ejemplo: https://manaschhabra:manaschhabra499@www.geeksforgeeks.org/ (manaschhabra es el nombre de usuario y manaschhabra499 es la contraseña). 

Sintaxis:

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

Valores de propiedad: contiene href de valor único que especifica la URL. Puede ser una URL absoluta, una URL relativa, un enlace a un elemento, etc.

Tres valores posibles: –

  • URL absoluta: Apunta a otro sitio web.
  • URL relativa: Apunta a un archivo dentro de un sitio web.
  • URL ancla : Apunta a un ancla dentro de una página.

 Valor devuelto: Devuelve un valor de string que representa la URL. 

Ejemplo 1: este ejemplo devuelve la propiedad Area href. 

html

<!DOCTYPE html>
<html>
<title>
    HTML DOM Area href Property
</title>
 
<body>
    <h4> HTML DOM Area href Property </h4>
    <button onclick="GFG()">Click Here!
    </button>
    <map name="Geeks1">
        <area id="Geeks"
            shape="rect"
            coords="0, 0, 110, 100"
            alt="Geeks"
            href=
        "https://manaschhabra:manaschhabra499@www.geeksforgeeks.org/">
    </map>
 
    <img src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
        width="300"
        height="100"
        alt="Geeksforgeeks"
        usemap="#Geeks1">
    </br>
    <p id="GEEK!"></p>
     
    <script>
        function GFG() {
             
        // Return value of href attribute.
            var x = document.getElementById("Geeks").href;
        document.getElementById("GEEK!").innerHTML = x;
        }
    </script>
</body>
 
</html>                   

Salida: antes de hacer clic en el botón:

  

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

  

Ejemplo 2: este ejemplo establece la propiedad Area href. 

html

<!DOCTYPE html>
<html>
<title>
    HTML DOM Area href Property
</title>
 
<body>
    <h4> HTML DOM Area href Property </h4>
    <button onclick="GFG()">Click Here!
    </button>
    <map name="Geeks1">
        <area id="Geeks"
            shape="rect"
            coords="0, 0, 110, 100"
            alt="Geeks"
            href=
        "https://manaschhabra:manaschhabra499@www.geeksforgeeks.org/">
    </map>
 
    <img src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
        width="300"
        height="100"
        alt="Geeksforgeeks"
        usemap="#Geeks1">
    </br>
    <p id="GEEK!"></p>
     
    <script>
        function GFG() {
             
        // Sets href property.
            var x = document.getElementById("Geeks").href =
                 https://abc:abc499@www.geeksforgeeks.org/;
        document.getElementById("GEEK!").innerHTML =
                "The href has been changed to " + x;
        }
    </script>
</body>
 
</html>                    

Salida: antes de hacer clic en el botón:

  

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

  

Navegadores compatibles:

  • Google Chrome
  • Firefox
  • explorador de Internet
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 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 *