SweetAlert2 中提供了 timer 配置项,该配置项是用来定时关闭弹窗的计时器,单位为ms(毫秒)。如果需要 SweetAlert2 自动关闭弹窗的话,配置该项即可。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>sweetalert2秒后自动消失</title>
<link rel="stylesheet" href="https://www.02405.com/sweetalert2.min.css">
<script src="https://www.02405.com/jquery-3.3.1.min.js"></script>
<script src="https://www.02405.com/sweetalert2.min.js"></script>
</head>
<body>
<script type="text/javascript">
Swal.fire({
title: "操作完成",
showConfirmButton: false,
showCancelButton: false,
timer:2000 //2秒后自动关闭窗口。
})
</script>
</body>