mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
15 lines
386 B
JavaScript
15 lines
386 B
JavaScript
function getFavs() {
|
|
let favList = [];
|
|
const inputs = document.querySelectorAll('input');
|
|
for (const input of inputs) {
|
|
if (input.checked === true) {
|
|
favList.push(input.parentNode.textContent);
|
|
}
|
|
}
|
|
document.querySelector('.favorites').textContent = favList.join(' ');
|
|
}
|
|
|
|
let button = document.querySelector('button');
|
|
|
|
button.addEventListener('click', getFavs);
|