js代码
<script> document.onclick = redirect; function redirect() { swal({ title: "通知", text: "是否进入首页?", //type: "info", showCancelButton: true, closeOnConfirm: false, showLoaderOnConfirm: true, }, function() { setTimeout(window.location.href = '#', 1); }); } </script>