大家好,欢迎来到IT知识分享网。
swal – SweetAlert:是 JS 原生 alert 弹窗的完美替代品
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.css" />
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/sweetalert/1.1.3/sweetalert.min.js"></script>
</head>
<body>
<div class="alert">
<button class="btn">点击</button>
</div>
<script>
function show(action) {
swal({
title: "弹窗标题",
text: "弹窗内容",
type: "info", // 弹窗类型 success、error、warning、info
showCancelButton: true, // 是否显示取消按钮
showConfirmButton: true, // 是否显示确定按钮
closeOnConfirm: true, // 点击确定按钮是否关闭弹出层
closeOnCancel: true, // 点击删除按钮是否关闭弹出层
cancelButtonText: "取消~", // 取消按钮的文本
confirmButtonText: "确定~", // 确定按钮的文本
confirmButtonColor: "orange", // 确定按钮的颜色(默认为蓝色)
}, action); // action:点击确定的回调函数
}
function action() {
alert("回调函数");
}
$(".btn").click(function () {
show(action);
});
</script>
</body>
</html>
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/23907.html