我有一个确认弹出窗口,询问是或否,这是代码:
Confirm({
Title: 'Warning',
Message: 'Are you sure?',
Buttons: [{
text: 'Yes',
callback: function(){
RRSubmitRemoveReportRequest($(this));
},
highlighted: true
}, {
text: 'No)',
callback: null,
type: 'no'
}]
});
如果如果发送参数 $(this),我应该使用匿名函数,否则它会立即调用该函数,有人可以解释一下吗?谢谢