我遇到了这个点击调用,它首先返回undefined然后调用该函数。我正在使用lobibox插件
$('.action').click(function(e){
e.preventDefault();
//confirm option
if (agreed('Are you sure you want to increase the number?')=='yes')){
alert('go on');
}
});
function agreed(data){
Lobibox.confirm({
msg: data,
callback: function ($this, type) {
return type;
}
});
}
调用约定的函数但不返回其输入。如果我用alert()调用它,它首先得到undefined结果然后显示对话框。