1

在我的应用程序中,用户在按地图点击时创建标记。所以这样的代码:

function placeMarker(map, location) {
     var marker = new google.maps.Marker({
         position: location,
         map: map
     //other...
     var infowindow = new google.maps.InfoWindow({
         content: ballon.get(0)
     });

     ballon.find("#delete-btn").click(function(){
        infowindow.close();
        $mapPreview.data("markers")[id].marker.setMap(null);
        delete $this.data("markers")[id];
     });
});

"#delete-btn"在里面infowindow。问题是当用户单击时,"#delete-btn"他还会在地图上创建新标记。我怎样才能避免这种情况?

4

1 回答 1

1
baloon.find("#delete-btn").click(function(e){
    e.stopPropagation();

将事件变量传递给 click 函数(e),然后使用停止事件传播e.stopPropagation()

这将阻止事件通过 DOM 冒泡并被其他各种侦听器(例如地图上的侦听器)拾取。

于 2012-08-14T04:51:29.670 回答