sweetalert2 全面替代 alert ,从 sweetalert2 弹出 text 到 弹出 Dom 以及模态框和取消 sweetalert2 的 OK 按钮

1. 简易基本版 sweetalert 涵盖日常基本的弹出及对话框



2. 升级版本 sweetalert2 满足常见开发工作中的各种要求




3 取消 OK 按钮, 只需要设置 showConfirmButton: false,

      Swal({
        title: 'Oops...',
        text: 'Something went wrong!',
        showConfirmButton: false,
      })

原文地址:https://www.cnblogs.com/zhourongcode/p/9297386.html