官网地址
CDN方式使用
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
下载到本地
https://unpkg.com/sweetalert@2.1.2/dist/sweetalert.min.js
swal({ title: "Are you sure?", text: "Once deleted, you will not be able to recover this imaginary file!", icon: "warning", buttons: ["取消","确定"], dangerMode: true, }) .then((willDelete) => { if (willDelete) { swal("Poof! Your imaginary file has been deleted!", { icon: "success", }); } else { swal("Your imaginary file is safe!"); } });
原文:https://www.cnblogs.com/wanglan/p/10385666.html