admin管理员组文章数量:1344545
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 badges1 Answer
Reset to default 8Rather than using an event to check, you should check when the form submits. Here it is step by step:
- When user selects a place, store the place AND the text value of the input
- When the form submits, check if the value of the input is the same as what you saved
- 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!
本文标签: javascriptHow to tell when google places autocomplete suggestion was not usedStack Overflow
版权声明:本文标题:javascript - How to tell when google places autocomplete suggestion was not used? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743789840a2539360.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论