解决TypeError:事件未定义

我正在尝试使用用户的邮政编码来请求该地区的代表。为了进行故障排除,我尝试记录邮政编码和包含邮政编码的URL的控制台。


$(document).ready(function() {

      //Wait until user submits postal code (ie. K2H6G7)

      $("form").on("submit", function(event) {

          var request = new XMLHttpRequest();

          event.preventDefault();

          var searchWord = $("#search").val(); //Take postalcode and apply to url

          var url = "https://represent.opennorth.ca/postcodes/" + searchWord + "/?format=apibrowser";

          console.log(searchWord);

          console.log(url) request.open('GET', url, true);

          request.onreadystatechange = function() {

            if (request.readyState === 4) {

              if (request.status === 200) {

                //Connect to API, create cards for each politician instance

                var data = JSON.parse(this.response);

                data.representatives_centroid.forEach(representatives_centroid => {

                  const card = document.createElement('div');

                  card.setAttribute('class', 'card');

                  const img = document.createElement('img');

                  img.src = representatives_centroid.photo_url;

                  const p1 = document.createElement('p');

                  p1.textContent = `$ {

              representatives_centroid.party_name

            }

            $ {

              representatives_centroid.elected_office

            }

            $ {

              representatives_centroid.first_name

            }

            $ {

              representatives_centroid.last_name

            }

            `

                  const p2 = document.createElement('p');

                  p2.textContent = `$ {

              representatives_centroid.district_name

            }

            ` //Add data to card

                  container.appendChild(card);

                  card.appendChild(img);

                  card.appendChild(p1);

                  card.appendChild(p2);

                });

              } else {

  

我收到的错误消息是“ TypeError:事件未定义”。我缺少明显的东西吗?


素胚勾勒不出你
浏览 242回答 2
2回答

慕工程0101907

我不确定,但是在表格中输入什么呢?type =“ text”用于输入,我想您需要一个action =“ / route /”类型的instate才能发生事件并可以阻止它。问候。-
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript