-3

我在同一个文件中有两个不同的 JavaScript 函数,如下所示:

function functionOne(a)
{
   if(a)
   {
       return true;
   }
   else
   {
       return false;
   }
}

function functionTwo(b)
{
   //I want to access if condition parameter a here
}

我想访问if 中的functionOne条件参数afunctionTwo

4

2 回答 2

0
function functionTwo(b)
{

    if(functionOne(b))
        return true;
    else
        return false;

}
于 2013-05-31T07:08:18.840 回答
0

以下是两种方式......

选项1:

<script>
var newVar = "";
function functionOne(a)
{

if(a) { newVar = true; 返回真;} 否则 { 返回假;} }

function functionTwo(b)
{
 //user newVar vairalbe to get the value
 //i want to access if condition parameter a here
}

选项 2:

<script>
function functionOne(a)
{
if(a)
{
    return a;
}
else
{
    return false;
}
}
function functionTwo(b)
{
//   call functionOne(a) to get the value;
//i want to access if condition parameter a here
}
</script>
于 2013-05-31T07:13:05.410 回答