如何更改InfoBox内容?

时间:2012-02-10 13:28:02

标签: google-maps google-maps-api-3

我有这段代码:

var infoWindowOptions = {
    content: "content",

    ... some other options ...
};

var infowindow = new InfoBox(infoWindowOptions); 
infowindow.open(map, marker); 

它没有问题。 现在,我想改变内容,所以我已经完成了:

infowindow.content = "new content";
infowindow.open(map, marker); 

但它没有改变!为什么?我该如何解决?

1 个答案:

答案 0 :(得分:1)

infoWindow.setContent("new content");

也接受DOM元素。