0
我有一個問題litteleGmaps事件添加到鏈接標記
這是可能的一個事件單擊添加到鏈接在gmaps V3的標誌?
var m = new google.maps.Marker({
map: map,
animation: google.maps.Animation.DROP,
position: position,
html: "<a id='link'>mylink</a>",
icon: '/images/repairer.png'
});
gmarkers.push(m);
$('#link').click(function() {
alert($(this).attr('data'));
});
google.maps.event.addListener(m, 'click', function() {
info_window.setContent(this.html);
info_window.open(map, this);
});
HELP
$( '#service_center')。在( '點擊', '#OpenDetailsFromMarker' + GM,函數(){ \t \t \t \t \t \t \t \t警報( $(this).attr('data')); \t \t \t \t \t \t}); 不工作 – user2437305
@ user2437305用'$('#service_center')。嘗試'('click','a',function(){alert($(this).attr('data')); }' –
不工作:(是否有另一種解決方案? – user2437305