“getElementByTagName JavaScript” Kod odpowiedzi

Dokument Get Element według tagu

var list = document.getElementsByTagName("UL")[0];
list.getElementsByTagName("LI")[0].innerHTML = "Milk";
Awesomered989

getElementByTagName JavaScript

const btns = document.getElementsByTagName('button');
const btnFirst = btns.item(0);
// to get an item for the HTML collection use indexing, like arrays start
// at index 0
const btnNamed = btns.namedItem('named-btn');
// to get a named item you can use both id & name attributes

btnFirst.onclick = () => {
    console.log('The first item in the collection');
}
btnNamed.onclick = () => {
    console.log('A named item in the collection');
}
ST111

Odpowiedzi podobne do “getElementByTagName JavaScript”

Pytania podobne do “getElementByTagName JavaScript”

Więcej pokrewnych odpowiedzi na “getElementByTagName JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu