我正在为我的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();
}
});
答案 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);
});