不幸的是,下面的这段代码不会在萤火虫控制台上打印任何东西,也不会抛出错误,不确定这段代码有什么问题。
$(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);
}
});