El método namedItem() se usa para devolver el elemento con el ID, O, nombre o contenido especificado en una colección de elementos HTML en el documento.
Sintaxis:
HTMLCollection.namedItem(name)
O
HTMLCollection[name]
Parámetros: contiene el nombre como sus valores de parámetros que representan el ID O el atributo de nombre que el usuario desea devolver.
Valor de retorno: Devuelve un objeto Element, que representa el elemento con el ID o nombre especificado. de lo contrario, devuelve nulo si el elemento no existe.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <style> h1 { color: green; } </style> </head> <body> <center> <h1>GeeksForGeeks</h1> <h2>HTMLCollection namedItem() Method</h2> <p id="GFG"> The namedItem() method is used to return the content of the element with the specified ID or name Attribute values </p> <button onclick="Geeks()">Submit</button> <script> function Geeks() { var w = document.getElementsByTagName("P").namedItem("GFG"); alert(w.innerHTML); } </script> </center> </body> </html>
Producción:
Después de hacer clic en Enviar:
Navegadores compatibles: los navegadores compatibles con el método HTMLCollection NAMEDitem() 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