0

我有一个小问题

可以将事件 CLICK 添加到 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);
});

帮助

4

1 回答 1

0
  $('#your_map_id').on('click', '#link',function () {    
          alert($(this).attr('data'));
    });
于 2013-05-30T15:56:22.153 回答