1.引入
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"> </script>
2.三個常用的提示框
$(".demo_1").click(function() { swal("這是一個信息提示框!"); }); $(".demo_2").click(function() { swal("Good!", "彈出了一個操作成功的提示框", "success"); }); $(".demo_3").click(function() { swal("OMG!", "彈出了一個錯誤提示框", "error"); });
3.警告框提示
swal({ title: "您確定要刪除嗎?", text: "您確定要刪除這條數據?", type: "warning", showCancelButton: true, closeOnConfirm: false, confirmButtonText: "是的,我要刪除", confirmButtonColor: "#ec6c62" }, function() { $.post(getUrl("Cart/del"), {id: id}, function(data) { location.reload(); }) });