在循环中声明的函数引用外部范围的变量可能会导致语义混乱

时间:2017-08-09 07:18:14

标签: javascript function

JSHint正在抛出以下警告:

  

在循环中声明的引用外部范围变量的函数可能会导致语义混乱。   这是关于创建谷歌地图项目。   我没有在stackoverflow中找到这个确切的问题。

知道怎么解决这个问题吗?

// The error refers on this line:
marker.addListener('click', function() {

  // here is all the function: 
  marker.addListener('click', function() {
    populateInfoWindow(this, largeInfowindow);
  });
}

我的gitHub回购: https://github.com/Heleni/Google_Maps

0 个答案:

没有答案