Показать сообщение отдельно
  #1 (permalink)  
Старый 16.05.2020, 21:08
Профессор
Отправить личное сообщение для DDim1000 Посмотреть профиль Найти все сообщения от DDim1000
 
Регистрация: 20.10.2016
Сообщений: 223

Ошибка: forEach is not a function
Здравствуйте!
Подскажите, пожалуйста, почему возникает ошибка tours_list.forEach is not a function?

var tours_list = document.querySelectorAll(".item-tour-pay-list > .item-tour-pay-inform ");

      tours_list.forEach(function(tours, t) {
              country = tours.querySelectorAll(".item-tour-title-block small");
              price = tours.querySelectorAll(".block-side .price");
              for (var i = 0; i < country.length; i++) {
                   if(country[i].textContent.indexOf('Брюки') !== -1){
                        var inputD = country[i].textContent;
                        for (var l = 0; l < price.length; l++){ 
                            
                             console.log(inputD+' '+price[i].textContent  );  
                        }
                   }
               }
             t++;
        })
Ответить с цитированием