@RomanMotsar

Как поменять цвета элементов которые стали белыми обратно на красный?

const months = document.querySelector(".months");

const monthArr = Array.from(months.children);
console.log(monthArr);

const clickMount = (event) => {
  let currentMonth = event.currentTarget;
  currentMonth.style.backgroundColor = "red";
  if (currentMonth.style.backgroundColor == "red") {
    currentMonth.style.backgroundColor = "white";
  } else if ((currentMonth.style.backgroundColor = "white")) {
    currentMonth.style.backgroundColor = "red";
  }
};

monthArr.forEach((month) => {
  month.addEventListener("click", clickMount);
});
  • Вопрос задан
  • 58 просмотров
Пригласить эксперта
Ответы на вопрос 1
NikFaraday
@NikFaraday
Student full-stack Developer
if (currentMonth.style.backgroundColor == "red") {
currentMonth.style.backgroundColor = "white";
} else if ((currentMonth.style.backgroundColor = "white")) {
currentMonth.style.backgroundColor = "red";
}


=>

if (currentMonth.style.backgroundColor == "red") {
currentMonth.style.backgroundColor = "white";
} else {
currentMonth.style.backgroundColor = "red";
}
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы
22 нояб. 2024, в 11:53
3000 руб./за проект
22 нояб. 2024, в 11:51
20000 руб./за проект
22 нояб. 2024, в 11:50
200000 руб./за проект