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