如何连接两个函数,以便在某些事件发生时,一个函数的值流向另一个函数?

时间:2018-04-13 06:39:41

标签: javascript function callback

一个功能接收用户操作:

function userDidSomething(whatever){
 return whatever 
}

现在,只要用户这样做,我就需要知道另一个文件中另一个函数发生的事情:

function notifyWhenUserDidSomething(whatever){
// any time "userDidSomething" is called i want to have its return value in THIS function

}

这些功能在不同的文件中,所以我不能只做

UserDidSomething(whatever){
   notifyWhenUserDoSomething(whatever)
  return whatever;
}

另外,假设没有DOM事件处理是可能的....有没有办法用一些回调的东西来实现呢?

0 个答案:

没有答案