HTML | Objeto de marca DOM

El objeto Mark en HTML DOM se usa para representar el elemento HTML <mark>. El objeto Mark es nuevo en HTML 5. Se puede acceder al elemento <mark> usando el método getElementById().
Sintaxis: 
 

document.getElementById("id")

Donde id se asigna a la etiqueta <mark>.
Nota: esta etiqueta no es compatible con Internet Explorer y versiones anteriores.
Ejemplo 1: 
 

html

<!DOCTYPE html>
<html>
    <head>
        <title>
            HTML DOM Mark Object
        </title>
    </head>
     
    <body style = "text-align:center;">
 
        <h1 style = "color:green;" >
            GeeksForGeeks
        </h1>
         
        <h2>DOM mark Object</h2>
 
         
<p>
            A <mark id = "mark_obj">computer science</mark>
            portal for geeks.
        </p>
 
         
        <button onclick = "Geeks()">
            Click Here
        </button>
         
        <script>
            function Geeks() {
                var txt = document.getElementById("mark_obj");
                txt.style.fontSize = "x-large";
            }
        </script>
    </body>
</html>                   

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

mark

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

mark

Ejemplo 2: se puede crear un objeto de marca mediante el método document.createElement. 
 

html

<!DOCTYPE html>
<html>
    <head>
        <title>
            HTML DOM Mark Object
        </title>
    </head>
     
    <body style = "text-align:center;">
 
        <h1 style = "color:green;" >
            GeeksForGeeks
        </h1>
         
        <h2>DOM mark Object</h2>
 
        <button onclick = "Geeks()">
            Click Here!
        </button>
         
        <br><br>
         
        <div>
            A <span id = "p"></span>
            portal for geeks.
        </div>
         
        <script>
            function Geeks() {
                var txt = document.createElement("MARK");
                var t = document.createTextNode("computer science");
                txt.appendChild(t);
                document.getElementById("p").appendChild(txt);
            }
        </script>
</body>
</html>                   

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

mark

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

mark

Navegadores compatibles:

  • Google Chrome
  • Internet Explorer (después de IE 9)
  • Mozilla Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por Vishal Chaudhary 2 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 *