我有一个关于javascript匿名函数的问题。
原点功能:
!function (n) {
return n[0].call(1, 2,3);
}
([function (n, t, i) {alert(1);}, function (t) {}
]);
我的问题是如何动态地向这个匿名函数添加新函数'这样的参数
!function (n) {
return n[0].call(1, 2,3);
}
([function (n, t, i) {alert(1);}, function (t) {},function (t) {alert('new function');}
]);
答案 0 :(得分:0)
如果您问如何动态地将函数添加到函数数组中:
.as-console-wrapper { max-height: 100% !important; top: 0; }