如何在首次使用后触发Google商家信息自动填充结果下拉列表?

时间:2018-05-31 00:29:40

标签: javascript jquery google-maps google-places-api googleplacesautocomplete

使用 Google Maps JavaScript API (通过<script src="https://maps.googleapis.com/maps/api/js?key=MY_API_KEY&libraries=places&callback=initAutocomplete" async defer></script>),我的地址输入...

enter image description here

...在键入&#34; 1251&#34;时显示自动填充信息...

enter image description here

...当我点击地址(或按回车键)时,将完整的地址添加到输入中:

enter image description here

目前,如果我再次点击地址输入(在添加地址之后),它只是将焦点添加到输入而不是其他内容:

enter image description here

我的问题是:点击已经自动填充的输入时,如何使用输入数据再次触发下拉列表?

点击删除一次(只需将结尾从USA更改为US)会重新打开下拉列表,但我不希望用户必须更改条目以查看下拉列表。以下是我尝试过的内容:

$('.geoloc input').on({

    // neither 'place_changed' nor 'focus' trigger the dropdown (doesn't work)
    click: function(){
        google.maps.event.trigger(this, 'place_changed');
        // or
        google.maps.event.trigger(this, 'focus', {});
    },

    // enter selects first address from dropdown (works)
    keydown: function(e){
        if (e.keyCode == 13) {
            google.maps.event.trigger(this, 'keydown', {keyCode:40});
            google.maps.event.trigger(this, 'keydown', {keyCode:13});
            this.blur();
        }
    }
});

使用字段值以编程方式触发下拉列表的正确方法是什么?

2 个答案:

答案 0 :(得分:2)

我想我知道你要完成什么。您希望保留文本字段的状态,以便在重新获得焦点时,它可以恢复到您所处的位置。这样的事情对你有用吗?

var input = document.getElementById('searchTextField');
var autocomplete = new google.maps.places.Autocomplete(input);

input.addEventListener('input', function () {
  this.dataset.originalVal = this.value;
});
input.addEventListener('focus', function () {
  this.value = input.dataset.originalVal ? input.dataset.originalVal : this.value;
});
input {
  width: 300px;
}
<script src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
<input id="searchTextField" type="text">

答案 1 :(得分:0)

接受的答案对我来说不行,但另一个答案对我来说:Need to manually start the google places autocomplete

TL; DR,在延迟后调用输入的.focus()