HTML | DOM Anchor hreflang Propiedad

La propiedad hreflang del ancla DOM en HTML DOM se usa para establecer o devolver el valor del atributo hreflang de una URL o un enlace . El atributo hreflang se utiliza para especificar el idioma de un documento vinculado. Sintaxis: 

  • Devuelve la propiedad hreflang.
anchorObject.hreflang
  • Se utiliza para establecer la propiedad hreflang.
anchorObject.hreflang = languagecode

Valores de propiedad: 

  • languagecode: Especifica el código de dos letras que representa el idioma del documento vinculado.

Valor de retorno: devuelve un valor de string que representa el idioma del documento vinculado. Ejemplos-1: este ejemplo devuelve la propiedad hreflang. 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Anchor hreflang Property
    </title>
</head>
 
<body>
    <center>
        <h1>
          GeeksForGeeks
      </h1>
 
        <h2>
          DOM Anchor hreflang Property
      </h2>
 
        <p>Welcome to
            <a href=
  "http://www.example.com:4097/test.htm#part2"
               id="GFG"
               rel="nofollow"
               hreflang="en-us"
               target="_self">
                GeeksforGeeks
            </a>
        </p>
 
        <button onclick="myGeeks()">
          Submit
      </button>
 
        <p id="sudo"
           style="color:green;
                  font-size:25px;">
      </p>
 
        <script>
            function myGeeks() {
               
                var x =
                    document.getElementById(
                      "GFG").hreflang;
               
                document.getElementById(
                  "sudo").innerHTML = x;
            }
        </script> "
    </center>
</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 hreflang. 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Anchor hreflang Property
    </title>
</head>
 
<body>
    <center>
        <h1>
          GeeksForGeeks
      </h1>
 
        <h2>
          DOM Anchor hreflang Property
      </h2>
 
        <p>Welcome to
            <a href=
  "http://www.example.com:4097/test.htm#part2"
               id="GFG"
               rel="nofollow"
               hreflang="en-us"
               target="_self">
                GeeksforGeeks
            </a>
        </p>
 
        <button onclick="myGeeks()">
          Submit
      </button>
 
        <p id="sudo"
           style="color:green;
                  font-size:25px;">
      </p>
 
        <script>
            function myGeeks() {
               
                var x =
                    document.getElementById(
                      "GFG").hreflang = "fr";
               
                document.getElementById(
                  "sudo").innerHTML =
                  "The value of the hreflang attribute"+
                  " was changed to " + x;
            }
        </script> "
    </center>
</body>
 
</html>

Salida: Antes de hacer clic en el botón: Después de hacer clic en el botón: Navegadores compatibles: Los navegadores compatibles con la propiedad DOM Anchor hreflang se enumeran a continuación:

  • Google Chrome
  • Internet Explorer 10.0 +
  • Firefox
  • Ó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 *