0

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

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

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

4

2 回答 2

4

举个例子很容易理解:

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);

归根结底,回调应该是将来会在某个地方调用的函数,而不是函数的值。

于 2013-01-29T16:33:51.030 回答
2

callback属性需要设置为function.

如果你这样做:

callback: RRSubmitRemoveReportRequest($(this))

您正在设置函数callback返回值RRSubmitRemoveReportRequest

你需要给它一个函数。 RRSubmitRemoveReportRequest是一个函数,RRSubmitRemoveReportRequest($(this))是一个函数调用,所以它被运行并使用它的返回值。

当你这样做时:

callback: function(){
    RRSubmitRemoveReportRequest($(this));
}

您正在传递一个函数,该函数在调用时将RRSubmitRemoveReportRequest正确调用。

于 2013-01-29T16:35:56.807 回答