我正在尝试在确认选项中使用yii中的甜蜜警报。
我有一个ajax按钮,我希望弹出一个甜蜜警报,一旦用户选择确认或取消,我可以继续使用ajax请求或停止。
'ajax' => array(
'url'=>CController::createUrl('items/delete'),
'type'=>'POST',
'async'=>true,
'data'=>array('Item'=>$item['Item_id']),
'dataType'=>'json',
'enctype'=>'multipart/form-data',
'cache'=>false,
'beforeSend'=>'js:function(data)
{
var x = sweetalertDelete();
if(x){alert("aaaaaaa"); return true;}
else {alert("bbbbb"); return false;}
}',
'success'=>'function(data)
{
我正在使用beforesend以显示甜蜜警报框。问题是,只要出现该框,就会返回x并显示稍后看到的警报。这是我甜蜜的警报代码:
function sweetalertDelete(){
swal({
title: "<?php echo Yii::t('app','misc.order_delete'); ?>",
text: "You will not be able to recover this imaginary file!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
closeOnConfirm: false,
closeOnCancel: false
},
function (isConfirm) {
//swal("Deleted!", "Your imaginary file has been deleted.", "success");
if (isConfirm) {
alert("true");
return true;
}
else
{
alert("false");
return false;
}
});
}
我的问题是如何制作它以便返回isconfirm的值,并且在单击确认/取消按钮之前,将不会发送ajax请求。