1
function bindInfoWindow(marker, map, infoWindow, html) {
google.maps.event.addListener(marker, 'click', function() {
infoWindow.setContent("<div id='window'>" + html + "</div>");
}
和
var html = "<b>" + title + "</b> <br/><b>" + country;
,我想,當國家爲英國或美國改變#window DIV或不透明度infoWindow
有沒有辦法可以用jQuery來做到這一點?
thnx