Как в созданном элементе поставить картинку?
Delete = document.createElement('img')
Delete.getAttribute('https://www.freeiconspng.com/thumbs/x-png/x-png-33.png')
Ответы (1 шт):
Автор решения: nazarpunk
→ Ссылка
const img = document.createElement('img');
img.src = 'https://interactive-examples.mdn.mozilla.net/media/cc0-images/grapefruit-slice-332-332.jpg';
document.body.appendChild(img);