@strelok1732

Почему выдаёт ошибку Uncaught TypeError: Cannot read properties of null (reading 'value')?

document.getElementById("btn").addEventListener("click", ()=> {
     const email = document.getElementById("email").value;
     const passwd = document.getElementById("passwd").value; //здесь выдаёт ошибку
     let counter = 0;
     users.forEach(el => {
         if (el.email === email && el.password === passwd){
             document.getElementById("email").value = "";
             document.getElementByld("passwd").value = "";
             counter++
         }
     });
     if (counter === 0 ){
         alert("Неудачная авторизация");
 
     }
     else
     alert("Удачная авторизация") ;
 });
  • Вопрос задан
  • 1509 просмотров
Решения вопроса 1
Anopeng
@Anopeng
Веб-программист, учу фронт и бек
Потому что нет элемента с id="passwd"
Ответ написан
Пригласить эксперта
Ваш ответ на вопрос

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

Похожие вопросы