Sweet Alert - JavaScript 警告插件


MIT
跨平台
JavaScript

软件简介

SweetAlert 是一个漂亮的 JavaScript
警告的替代品。它可以自动显示在页面中间,不论是在电脑上、手机上还是平板上都很好看,而且还高度定制化。

示例代码:

swal({
  title: "Are you sure?",
  text: "You will not be able to recover this imaginary file!",
  type: "warning",
  showCancelButton: true,
  confirmButtonColor: "#DD6B55",
  confirmButtonText: "Yes, delete it!",
  closeOnConfirm: false,
  html: false}, function(){  swal("Deleted!",  "Your imaginary file has been deleted.",  "success");
});