访问回调arg

时间:2013-01-12 23:11:46

标签: javascript television

我希望在使用远程和鼠标(电视应用)弹出窗口上的单击确定按钮后调用事件。你有什么想法我怎样才能访问arg变量,当我用鼠标点击这个按钮时,我通过远程的ENTER输入弹出回调(点击确定按钮后)?

function PopUp("napis", function callback (arg) {
 if (arg === sth)
  doSth();
})

$('button').click (function () { 
 if (arg === sth) //how can I access arg which will be the same with arg in callback function
  doSth(); 
})

1 个答案:

答案 0 :(得分:0)

该变量仅在该范围内可用,因此要在其他地方访问该变量,您可以将另一个变量设置为相同的值。像这样:

var myArg;

funkcja PopUp("napis", function callback (arg) {
 myArg = arg;
 if (arg === sth)
  doSth();
})

$('button').click (function () { 
 if (myArg === sth) //this will access myArg which will be set in the callback.
  doSth(); 
})