使用html选项的甜蜜警报不起作用你们可以解释我解决这个问题。否则我想明确地将模板绑定到甜蜜警报。
swal({
title: "Are you sure?",
text: '<b>Hiiii</b>' ,
type: "info",
showCancelButton: true,
confirmButtonColor: "#F44336",
confirmButtonText: "Yes, accept it!",
closeOnConfirm: true
html:true
}, function() {
$scope.onComment(record);
});
你能帮助我解决这个甜蜜警报问题吗?
答案 0 :(得分:1)
html is no longer used. Instead use the content object.
(https://sweetalert.js.org/guides/)
尝试:
swal({
content: "input",
});