一个功能接收用户操作:
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事件处理是可能的....有没有办法用一些回调的东西来实现呢?