随着bootstrap 3.0的发布, typeahead 插件已被删除并被Twitters typeahead 插件所取代。知道如何将它与addresspicker 插件结合使用。
我的旧代码是这样工作的:
$('#location').addressPicker({
boundElements: {
'#wizard .Country': function(data) {
var result = '';
$.each(data.address_components, function (index, value) {
if (value.types.indexOf('country') !== -1) {
result = value.long_name;
}
});
return result;
},
'#wizard .State': 'administrative_area_level_1',
'#wizard .City': 'locality',
'#wizard .PostalCode': 'postal_code',
'#wizard .Lat': 'lat',
'#wizard .Lng': 'lng'
}
});
前面新类型的事件触发器如下所示:
$('#location').typeahead({
/* ??? */
});