“JavaScript htmlCollection” Código de respuesta

para htmlcollection javaScript

var list = document.getElementsByClassName("class-name");
for (let item of list) {
    console.log(item.id);
}
Uninterested Unicorn

JavaScript htmlCollection

/* 
	Every function like document.getElementById() is a function of 
    htmlcollection. You can also change it or add new functions to it.
*/
// Examples 
HTMLCollection.namedItem()
HTMLCollection.item()
HTMLCollection.length
// How To Extend
HTMLCollection.prototype.class = function (value) {

};
document.getElementById("main").class();
Undefined

Respuestas similares a “JavaScript htmlCollection”

Preguntas similares a “JavaScript htmlCollection”

Más respuestas relacionadas con “JavaScript htmlCollection” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código