我想在Sweet Alert2.Ajax响应上显示自动生成的Ajax响应,这可能是确认按钮或信息消息的一些问题。我想显示与Ajax上收到的完全相同的内容。 有人知道我该如何实现它? 问候。
success: function (result) {
swal({
html:true,
title: title,
type: type,
text: $(result).find('html'),
confirmButtonColor: "#33537d",
confirmButtonText: "Close",
closeOnConfirm: false
},
答案 0 :(得分:0)
您好,您应该能够像这样在甜蜜警报中使用响应数据。
$.ajax({
type: "POST",
url: "YourPhpFile.php",
data: { 'dataString': dataString },
cache: false,
success: function(data) {
var responseData = "data : " + data;
swal(
html:true,
title: title,
type: type,
text: responseData,
confirmButtonColor: "#33537d",
confirmButtonText: "Close",
closeOnConfirm: false
)
}
});
祝你好运。