在可编辑的验证中添加确认不起作用

时间:2014-04-08 07:43:23

标签: javascript jquery x-editable

我正在为我的datepicker使用editable。我试图在我的验证中得到一些确认,但它不起作用。有什么不对?这是我的代码:

$('inputdate').editable({
    type: 'date',
    params: function(params){
        params.dateVal = dateVal;
        return params;
    },
     validate : function(value){

        var message = null;
        confirm("Are you sure you sure?",  
         function(result) {             

           if(result){
           //ajax call here
           }
           });
        });
        return message;
        }
        else return 'Notif';
    },
    url: url2,
    success: function(response){
        location.reload();
    }
  });

1 个答案:

答案 0 :(得分:0)

您使用方法确认是错误的,您可以阅读该方法here

你可以使用这样的代码:

if (confirm('question')){
 console.log('yes')
}
else{
 console.log('no')
}

编辑使用bootbox使用此代码

bootbox.confirm("Are you sure?", function(result) {
 Example.show("Confirm result: "+result);
});