最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to tell when google places autocomplete suggestion was not used? - Stack Overflow

programmeradmin1浏览0评论

Short version:

I'm using google's autoplete places from the Google Places Library (here ) and I need to tell when a user has selected a place from the auto-plete list and when they have clicked elsewhere, tabbed out, etc.

My goal is to run a function when a user interacts with the input element but does not select an autoplete option.

More details:

In looking at the documentation, it appears the only event is fired when (really, if) the places change, which happens after a (potentially long) server round trip. If the user doesn't select anything from the list, that event is never fired. (Docs at #Autoplete)

I can attach a listener to the blur event for the input element the autoplete attaches to, but the problem is that the blur event happens well before the places_changed event happens.

So far have tried a number of things including listening for events on the autoplete suggestions with something like the following:

$('body').on('click', '.pac-item', function(){alert.log('yay!');});

the google library apparently eats the events though.

Any help would be greatly appreciated.

Thanks!

Short version:

I'm using google's autoplete places from the Google Places Library (here https://developers.google./maps/documentation/javascript/places) and I need to tell when a user has selected a place from the auto-plete list and when they have clicked elsewhere, tabbed out, etc.

My goal is to run a function when a user interacts with the input element but does not select an autoplete option.

More details:

In looking at the documentation, it appears the only event is fired when (really, if) the places change, which happens after a (potentially long) server round trip. If the user doesn't select anything from the list, that event is never fired. (Docs at https://developers.google./maps/documentation/javascript/reference?hl=fr#Autoplete)

I can attach a listener to the blur event for the input element the autoplete attaches to, but the problem is that the blur event happens well before the places_changed event happens.

So far have tried a number of things including listening for events on the autoplete suggestions with something like the following:

$('body').on('click', '.pac-item', function(){alert.log('yay!');});

the google library apparently eats the events though.

Any help would be greatly appreciated.

Thanks!

Share Improve this question asked Jan 11, 2013 at 6:03 betaorbustbetaorbust 7,9781 gold badge22 silver badges15 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

Rather than using an event to check, you should check when the form submits. Here it is step by step:

  1. When user selects a place, store the place AND the text value of the input
  2. When the form submits, check if the value of the input is the same as what you saved
  3. If it is different, or if there is no place saved, then perform a manual places request

Demo: http://jsfiddle/robertdodd/FSRd8/7/

I put together a small demo above. What I did is attach a validation method to the form. This method will check the data before submitting the form, and if required perform a manual lookup first.

function validateForm() {
    searchfield = $('#searchfield').val();
    if (searchfield == "" || searchfield == null) { 
        // No text entered
    } else if (place && searchfield == placesearch) { 
        // Success
        return true;
    } else { 
        // place info and search text do not match, perform manual lookup   
        // when lookup is plete, the callback function will store the place info
        // and resubmit the form
    }
    return false;
}

This is just an outline of what happens, all the code is in the demo if you wish to see it.

I hope this helps you!

发布评论

评论列表(0)

  1. 暂无评论