1

我有很多功能。我正在使用 asp.net 控件。我想在一个(主)函数中调用所有函数。这是一个返回类型函数。这必须使用Javascript。

function a(){
    if(b==c){
    return true
}else{
    return false;
}

function b(){
    if(b==c){
        return true;
}else{ 
    return false;
}

function c(){}//return type

函数 a、b 和 c 在主函数中调用函数。

 function main()
    {
   //??
    }

这个功能不是作品。

4

1 回答 1

2

你要么想要:

function main()
{
  return a() && b() && c() && d(); // all must be true to return true
}

或者

function main()
{
  return a() || b() || c() || d(); // at least 1 must be true to return true
}
于 2012-09-12T05:11:53.090 回答