HTML | Del objeto DOM

El objeto Del en HTML DOM se usa para representar el elemento HTML <del>. Se puede acceder al elemento <del> mediante getElementById().
Propiedades del objeto:  

  • cite: Se utiliza para establecer o devolver el valor del atributo cite de un elemento eliminado.
  • dateTime: Se utiliza para establecer o devolver el valor del atributo dateTime de un elemento eliminado.

Sintaxis: 

document.getElementById("ID");

Donde el atributo ID es el ID asignado a la etiqueta <del>.
Ejemplo 1: 

html

<!DOCTYPE html>
<html>
    <head>
        <title>HTML DOM Del Object</title>
        <style>
            del {
                color: red;
            }
            ins {
                color: green;
            }
        </style>
    </head>
     
    <body>
        <h1>GeeksforGeeks</h1>
         
        <h2>DOM Del Object</h2>
         
         
 
<p>
            GeeksforGeeks is a <del id = "GFG"
            datetime = "2018-11-21T15:55:03Z">
            mathematical</del> <ins>computer</ins>
            science portal
        </p>
 
 
         
        <button onclick="myGeeks()">
            Submit
        </button>
         
        <p id="sudo"></p>
 
 
         
        <script>
            function myGeeks() {
                var g = document.getElementById("GFG").dateTime;
                document.getElementById("sudo").innerHTML = g;
            }
        </script>
 
    </body>
</html>                               

Salida:  
Antes Haga clic en el botón: 

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

Ejemplo 2: Del Object se puede crear utilizando el método document.createElement. 

html

<!DOCTYPE html>
<html>
    <head>
        <title>
            HTML DOM Del Object
        </title>
         
        <style>
            del {
                color: red;
            }
            ins {
                color: green;
            }
        </style>
    </head>
     
    <body>
        <h1>GeeksforGeeks</h1>
         
        <h2>DOM Del Object</h2>
         
        <button onclick = "myGeeks()">
            Submit
        </button>
         
        <p id="sudo"></p>
 
 
         
        <script>
            function myGeeks() {
                var g = document.createElement("DEL");
                var f = document.createTextNode("GeeksforGeeks");
                g.appendChild(f);
                document.body.appendChild(g);
            }
        </script>
    </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 DOM Del Object se enumeran a continuación: 

  • Google Chrome
  • explorador de Internet
  • 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 *