<script src='/node_modules/jquery/dist/jquery.min.js'></script>
<script type='text/javascript' src='/node_modules/sweetalert/dist/sweetalert.min.js'></script>
<script type="text/javascript">
function del(sn){
swal({
title: "確定要刪除嗎?",
text: "刪除後資料就救不回來囉!",
type: "warning",
buttons: {
cancel: "不...別刪",
roll: {
text: "是!含淚刪除!",
value: "roll",
},
},
}).then(willDelete => {
if (willDelete) {
swal("OK!刪掉惹!", "該資料已經隨風而逝了...", "success");
location.href='index.php?op=delete&sn=' + sn;
}
});
}
</script>