gpt4 book ai didi

javascript - 回调函数立即执行

转载 作者:行者123 更新时间:2023-11-28 12:38:31 25 4
gpt4 key购买 nike

我有一个确认弹出窗口,询问是或否,这是代码:

Confirm({
Title: 'Warning',
Message: 'Are you sure?',
Buttons: [{
text: 'Yes',
callback: function(){
RRSubmitRemoveReportRequest($(this));
},
highlighted: true
}, {
text: 'No)',
callback: null,
type: 'no'
}]
});

如果发送参数$(this),我应该使用匿名函数,否则它会立即调用该函数,有人可以解释一下吗?谢谢

最佳答案

举个例子就很容易理解了:

function foo(i){
return i*10;
}

var x = foo(1); // execute foo with 1 parameter;
<小时/>
var x = function(){ // creates a callback to the foo function.
foo(1);
};
<小时/>
var x = foo; // pointer to foo function and then:
x(1);
<小时/>

底线,回调应该是一个将在将来某个地方调用的函数,而不是函数的值。

关于javascript - 回调函数立即执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14587532/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com