一旦用户在输入字段中输入有效的美国邮政编码值,如何自动填充城市和州输入字段?

时间:2014-11-04 18:57:46

标签: javascript php jquery ajax zipcode

实际上,我在我的网站上有这个功能。但突然之间我以AJAX响应的形式获得州和城市的网址已停止运作。

现在我面临的最大问题是如何让这件事再次成功?

以下是我目前的代码:

HTML代码:

<input type="text" class="form-control" size="20"  id="store_zipcode" name="store_zipcode" value="">
    <input type="text" class="form-control" maxlength="50" readonly="readonly" name="store_city" id="store_city" value="">
    <input type="text" class="form-control"  readonly="readonly" name="store_state" id="store_state" value="" size="20">

jQuery-AJAX代码:

//Function called in Store Add/Edit form when user enters valid US Zip Code value  
    function GetLocation() {
        var geocoder = new google.maps.Geocoder();      

        var store_zipcode = $("#store_zipcode").val();

        var complete_address = store_zipcode;

        geocoder.geocode({ 'address': complete_address }, function (results, status) {
          if (status == google.maps.GeocoderStatus.OK) {
            var latitude = results[0].geometry.location.lat();
            var longitude = results[0].geometry.location.lng();

            $("#store_longitude").val(longitude);
            $("#store_latitude").val(latitude);
          } else {
              //alert("Request failed.")
            }
        });

        var el = $(this);

        if (el.val().length === 5) {
          $.ajax({
            url: "http://zip.elevenbasetwo.com",
            cache: false,
            dataType: "json",
            type: "GET",
            data: "zip=" + el.val(),
            success: function(result, success) {
              $("#store_city").val(result.city);
              $("#store_state").val(result.state);
            }
          });
        }  
      }
      //Call to the function to display location details on Store add/edit form
      $( "#store_zipcode" ).focusout(GetLocation);

还有一件事是我无法将城市和州名存储到我的数据库中。我必须像以上一样从某些数据源获取。但数据源应该是可靠的。功能永远不会崩溃。

如果您想了解有关此问题的更多信息,我可以通过以下网址查询问题:Link to the question previously asked

1 个答案:

答案 0 :(得分:1)

好吧,似乎elevenbasetwo.com域目前不在线。 zip.elevenbasetwo.com子域没有有效的DNS条目,因此目前不会产生任何结果。这可能只是暂时的事情 - 几个小时后再试一次。