有没有办法访问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]
答案 0 :(得分:1)
您可以使用
$(infowindow.getContent()).find('#map_wrapper')