-1

Using underscore.js how do I alert each item in the array? Is this even possible? I tried using the invoke function but its not working. can you please help?

_.invoke([1,3,7],alert(this));
4

1 に答える 1

6

invokeはこのタスクに適したメソッドではありません。代わりにそれぞれを試してください:

_.each([1,3,7], alert);

alertまたは、明示的に呼び出すことができます:

_.each([1,3,7], function(el) {
    alert(el);
});
于 2013-03-18T14:18:46.973 に答える