“JavaScript Dom Methods List” Ответ

JS Setattribute

const link = document.querySelector('a');

console.log(link.getAttribute('href'));
link.setAttribute('href', 'https://yandex.ru');
link.innerText = 'The Next Link';

const mssg = document.querySelector('p');

console.log(mssg.getAttribute('class'));

mssg.setAttribute('class', 'success');
mssg.setAttribute('style', 'color: green;');
Gendzi

JavaScript Dom Methods List

var myLinkCollection = document.getElementsByTagName(“abc”);
for (i = 0; i < myLinkCollection.length; i++) {
    if (myLinkCollection[i].className == “std_class”) {
        myLinkCollection[i].onclick = function() {
            this.style.backgroundColor = “#f00”;
        }
    }
}
Kops

Ответы похожие на “JavaScript Dom Methods List”

Вопросы похожие на “JavaScript Dom Methods List”

Больше похожих ответов на “JavaScript Dom Methods List” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования