El objeto de sección en HTML DOM se usa para representar el elemento HTML <section>. Se puede acceder al elemento de sección utilizando el método getElementById().
Sintaxis:
document.getElementById("id")
Donde id se asigna a la etiqueta <section>.
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title> HTML DOM section Object </title> </head> <body style = "text-align:center;"> <h1 style = "color:green;" > GeeksForGeeks </h1> <h2>DOM section Object</h2> <button onclick = "Geeks()"> Click Here </button> <br><br> <section id = "sec"> A computer science portal for geeks. </section> <script> function Geeks() { var txt = document.getElementById("sec"); txt.style.color = "green"; } </script> </body> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo 2: el objeto de sección se puede crear mediante el método document.createElement.
html
<!DOCTYPE html> <html> <head> <title> HTML DOM section Object </title> </head> <body> <h1 style = "color:green;" > GeeksForGeeks </h1> <h2>DOM section Object</h2> <button onclick = "Geeks()"> Click Here! </button><br> <script> function Geeks() { var x = document.createElement("SECTION"); x.setAttribute("id", "sec"); document.body.appendChild(x); var para = document.createElement("H5"); var txt = document.createTextNode("This" " text belongs to section."); para.appendChild(txt); document.getElementById("sec").appendChild(para); } </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
- Mozilla Firefox
- Borde
- Safari
- Ópera
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