假设我有以下代码:
function check(code){
var result=false;
$.each(arrayOfFunctions,function(){
thisresult=this.call(this,code);
if (thisresult==true){
result=true;
}
});
return result;
}
所以我有一个输入功能。我有一系列我应用于该数据的函数。如果其中任何一个为真,则外部函数为真。
当我在内部函数中时,有没有办法返回外部函数?是否可以对我的代码进行任何其他优化?
答案 0 :(得分:3)