La propiedad HTML DOM firstElementChild devolverá el primer elemento secundario de cualquier Node. Requisitos previos Parámetros del DOM (Modelo de objeto del documento)
:
No se requieren parámetros.
Valor devuelto:
Los valores devueltos por la propiedad firstElementChild son los siguientes:
- Un objeto de Node: representa el primer elemento secundario de un elemento.
- Nulo: si no hay elementos secundarios.
Sintaxis
node.firstElementChild()
Ejemplo:
html
<!DOCTYPE html> <html> <head> <head> HTML | DOM firstElementChild Property </head> <script> // JavaScript code to get the node whose // id is "Section" function example() { // x is used to store the element // whose id is "Sections". var x = document.getElementById("Sections" + ).firstElementChild.innerHTML; document.getElementById("GeeksForGeeks sections" + " first node").innerHTML = x; } </script> </head> <body> <p>GeeksForGeeksTopics</p> <ul id="Sections"> <li>Array</li> <li>LinkedList</li> <li>Stack</li> <li>Queue</li> <li>Tree</li> <li>Graph</li> </ul> <p> Click the button to get the first child of the node having id is "Sections". </p> <!--button is used to run example function--> <button onclick="example()">Click</button> <p id="GeeksForGeeks sections first node"></p> </body> </html>
Producción
Navegadores compatibles: los navegadores compatibles con DOM firstElementChild se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por Shahnawaz_Ali y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA