在另一个函数JavaScript中访问函数参数

时间:2018-03-14 07:44:55

标签: javascript function parameters

如何在调用它的另一个函数中访问函数的参数,这就是我的意思

function one(a){
  b();
}

function b(){
  //'a' is the parameter of function one
  if(a>0){
   //do some stuff
  }
}

//the parameter 'a' of function one goes here to catch an event
element.addEventListener('wheel', one);

我可以在函数b中访问函数一参数吗?

2 个答案:

答案 0 :(得分:2)

将参数传递给b

function one(a){
  b(a);
}

function b(a){
  //'a' is the parameter of function one
  if(a>0){
   //do some stuff
  }
}

答案 1 :(得分:0)

您必须将a传递给函数b,如下所示。

function one(a){
  b(a);
}

function b(a){
  //'a' is the parameter of function one
  if(a>0){
   //do some stuff
  }
}

//the parameter 'a' of function one goes here to catch an event
element.addEventListener('wheel', one);