超时后调用函数数组 - JavaScript
2014-10-06
62
因此,我有一个函数数组,例如:
var functions = [
function(){alert('foo');},
function(){alert('bar');}
];
超时后是否可以调用此数组中的所有函数,如下所示:?
setTimeout(/*insert function 1 and 2 here*/, 2000);
1个回答
827688146
hindmost
2014-10-06