SweetAlert html选项不起作用

时间:2017-09-20 08:45:28

标签: javascript angularjs sweetalert

使用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);
    });

你能帮助我解决这个甜蜜警报问题吗?

1 个答案:

答案 0 :(得分:1)

Doc说:

html is no longer used. Instead use the content object.

https://sweetalert.js.org/guides/

尝试:

swal({
  content: "input",
});