sweetalert2是一个强大的弹窗插件,可以美化网页的提示、确认和警告框。当需要在sweetalert2消失后重定向到特定页面时,可以使用以下步骤:
下面是一个示例代码:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="sweetalert2.min.css">
</head>
<body>
<button id="openButton">点击弹窗</button>
<script src="sweetalert2.min.js"></script>
<script>
document.getElementById('openButton').addEventListener('click', function() {
Swal.fire({
title: '提示',
text: '确定要重定向吗?',
icon: 'success',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: '确定'
}).then((result) => {
if (result.isConfirmed) {
window.location.href = "https://example.com";
}
});
});
</script>
</body>
</html>
在上述代码中,当用户点击"点击弹窗"按钮时,将会弹出一个成功的弹窗,询问是否要重定向。如果用户点击了弹窗中的"确定"按钮,将会通过window.location.href
将页面重定向到"https://example.com"。
推荐的腾讯云相关产品:腾讯云函数(云原生Serverless计算服务)。 腾讯云函数是一个事件驱动的无服务器计算服务,可以让你无需关注服务器的配置和维护,只需编写你的业务逻辑代码即可。腾讯云函数支持多种编程语言和云计算场景,提供了灵活、高效、可弹性扩展的计算能力。 产品介绍链接地址:https://cloud.tencent.com/product/scf
实战低代码公开课直播专栏
云+社区技术沙龙[第6期]
微搭低代码直播互动专栏
“中小企业”在线学堂
云+社区技术沙龙[第8期]
云+社区技术沙龙[第12期]
“中小企业”在线学堂
云+未来峰会
领取专属 10元无门槛券
手把手带您无忧上云