我的Ajax方法看起来像这样
$.post(url,{ ajax_call:"putDonation",addresse:addresse,phone:phone,email:email,name:name,amount:amount,amountinwords:amountinwords }).done(function(data){ console.log(data); var arr = []; try { var str = ""; //convert to json string arr = $.parseJSON(data); //convert to javascript array $.each(arr,function(key,value){ str +="<li>"+value+"</li>"; }); alert(str); $(".alert-danger").show(); $("#error").html(str); } catch (e) { swal("Jay Gayatri !",'Donation Sucessful',"success") $("#donation")[0].reset(); } })
我想展示一个像这样的甜蜜警报警告弹出窗口
swal({ title: "Are you sure ?",text: "You will not be able to recover this imaginary file!",type: "warning",showCancelButton: true,confirmButtonColor: "#DD6B55",confirmButtonText: "Yes,delete it!",cloSEOnConfirm: false },function(){ swal("Deleted!","Your imaginary file has been deleted.","success"); });
如果他们点击取消它不应该进行ajax呼叫,如果他们选择是,那么只有呼叫应该发生
那么任何人都可以告诉我如何在Sweet Alert方法中嵌入Ajax方法
谢谢
解决方法
举一个简单的例子,我可以告诉你我是如何在我的网站上做到的.我把Ajax调用放在甜蜜警报中.
function deleteorder(orderid) { swal({ title: "Are you sure?",text: "Are you sure that you want to cancel this order?",cloSEOnConfirm: false,cancel it!",confirmButtonColor: "#ec6c62" },function() { $.ajax( { type: "post",url: "/admin/delete_order.PHP",data: "orderid="+orderid,success: function(data){ } } ) .done(function(data) { swal("Canceled!","Your order was successfully canceled!","success"); $('#orders-history').load(document.URL + ' #orders-history'); }) .error(function(data) { swal("Oops","We Couldn't connect to the server!","error"); }); }); }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。