Код: Выделить всё
add
const txt = "hello world ";
const el = document.createTextNode(txt);
document.body.appendChild(el);
const f1 = document.querySelector("#a");
f1.addEventListener("click", () => {
document.body.appendChild(el);
console.log("hi");
});
Подробнее здесь: https://stackoverflow.com/questions/793 ... ntlistener
Мобильная версия