1

有没有办法访问 InfoBox 中的 div?以下代码适用于标准 InfoWindow:

content = '<div id="#map_wrapper">THIS IS A CONTENT</div>';
infowindow.setContent(content);
infowindow.setPosition(cluster.getCenter());
infowindow.open(map);
console.log($('#map_wrapper').html());

但是,使用 InfoBox,$('#map_wrapper').html()返回null. 有没有办法访问#map_wrapper

谢谢!

[西蒙.cpu]

4

1 回答 1

1

您可以使用

$(infowindow.getContent()).find('#map_wrapper')
于 2013-05-17T02:34:14.477 回答