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 に答える