如何在Google Maps InfoBox中访问div

时间:2013-02-09 04:37:27

标签: jquery google-maps

有没有办法访问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

谢谢!

[simon.cpu]

1 个答案:

答案 0 :(得分:1)

您可以使用

$(infowindow.getContent()).find('#map_wrapper')