在显示对话框之前,从ajax click事件调用lobibox.confirm返回undefined

时间:2016-12-17 20:18:19

标签: jquery ajax

我遇到了这个点击调用,它首先返回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结果然后显示对话框。

0 个答案:

没有答案