我将搜索结果附加到 google 地方 javascript api 自动完成。
到目前为止,我正在这样做:
var autocomplete;
function initialize() {
var myLatlng = new google.maps.LatLng(40.738793, -73.991402);
autocomplete = new google.maps.places.Autocomplete(document.getElementById('autocomplete'));
}
后来我有这个:
$('.pac-container').append( '<div class="j-search pac-item-refresh">Search Results</div>' );
$(document.body).on('click', '.pac-container .j-search', function(e) {
console.log('click fired');
});
问题?点击事件永远不会触发......
知道为什么吗?我的代码有什么问题吗?