我正在尝试使用for循环将同一事件监听器分配给多个google API标记。我认为我做错了,因为当我单独添加它们时,它们会起作用。
for (var i = 0; i < 14; i++) {
google.maps.event.addListener(marker[i], 'click', function() {
document.getElementById("mySidebar").style.width = "900px";
document.getElementById("main").style.marginLeft = "900px";
});
};