0

不幸的是,下面的这段代码不会在萤火虫控制台上打印任何东西,也不会抛出错误,不确定这段代码有什么问题。

$(document).ready(function(){

var animals = [  
      {species: 'Lion', name: 'King'},  
      {species: 'Whale', name: 'Fail'}  
    ];  

    for (var i = 0; i < animals.length; i++) {  
      (function (i) {   
        this.print = function () {   
          console.log('#' + i  + ' ' + this.species + ': ' + this.name);   
        }   
      }).call(animals[i], i);  
    }  

});
4

1 回答 1

1

您正在为数组中的每个对象分配一个.print()方法animals,但您从未调用该方法,因此该代码没有预期的输出。

于 2012-07-28T06:18:41.277 回答