0
我有兩個函數,如下所示。當我不允許修改底層函數時,有沒有辦法在頂層函數中使用「e」訪問變量「result」?在這裏,'add'事件是由按鈕點擊自動觸發的。在html/jscript中使用事件對象共享變量
elem.addEventListener('add',function (e) {
// need to do something with the variable "result"
},true);
$(#myButton).click(function(evt) {
var result = myFunction();
if (result != null) {
doSomething();
}
});
DECLARE結果 – 2013-03-10 15:23:54