在循环中使用函数的任何其他方式?
我收到一个jshint错误,说“不要在循环中创建函数”。 `
//inside loop
google.maps.event.addListener(marker, 'click',function(){
if (this.getAnimation() !== null) {
this.setAnimation(null);
答案 0 :(得分:0)
试试此代码
myFunction = function(){};
//loop starts
google.maps.event.addListener(marker, 'click',this.myFunction);