我正在使用 jConfirm 来确认对话是否成功。
我第一次尝试在 ajax 成功中调用它,但似乎失败了。
这是代码:
success: function (j) {
if(j.status)
{
jConfirm('File Already exist.Are you sure you want to replace ?', 'File Exist', function(r) {
if (r==true)
{ }
else
{
//code for cancel
}
});
}
}//success
问题是对话框显示但不等待用户回答并继续。
当更改为经典 javascript 确认一切正常!