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

回答

0
$('#your_map_id').on('click', '#link',function() {  
      alert($(this).attr('data')); 
    }); 
+0

$( '#service_center')。在( '點擊', '#OpenDetailsFromMarker' + GM,函數(){ \t \t \t \t \t \t \t \t警報( $(this).attr('data')); \t \t \t \t \t \t}); 不工作 – user2437305

+0

@ user2437305用'$('#service_center')。嘗試'('click','a',function(){alert($(this).attr('data')); }' –

+0

不工作:(是否有另一種解決方案? – user2437305