我有这段代码:
var infoWindowOptions = {
content: "content",
... some other options ...
};
var infowindow = new InfoBox(infoWindowOptions);
infowindow.open(map, marker);
它没有问题。 现在,我想改变内容,所以我已经完成了:
infowindow.content = "new content";
infowindow.open(map, marker);
但它没有改变!为什么?我该如何解决?
答案 0 :(得分:1)
infoWindow.setContent("new content");
也接受DOM元素。