' jshint':'不要在循环中制作功能'

时间:2017-06-14 08:02:55

标签: javascript google-maps jshint

在循环中使用函数的任何其他方式?

我收到一个jshint错误,说“不要在循环中创建函数”。           `

       //inside loop 

      google.maps.event.addListener(marker, 'click',function(){

        if (this.getAnimation() !== null) {
        this.setAnimation(null);    

1 个答案:

答案 0 :(得分:0)

试试此代码

 myFunction = function(){};
   //loop starts

 google.maps.event.addListener(marker, 'click',this.myFunction);