SweetAlert2 是一个基于 JavaScript 的弹窗库,用于创建美观、响应式的弹窗。它可以替代浏览器原生的 alert
、confirm
和 prompt
对话框,提供更多的自定义选项和更好的用户体验。
SweetAlert2 提供了多种类型的弹窗,包括但不限于:
swal
)swal.fire({ icon: 'success' })
)swal.fire({ icon: 'error' })
)swal.fire({ icon: 'warning' })
)swal.fire({ icon: 'info' })
)swal.fire({ icon: 'question', confirmButtonText: '确定' })
)SweetAlert2 可以应用于各种需要弹窗的场景,例如:
以下是一个简单的示例,展示如何在 HTML 中使用 SweetAlert2:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SweetAlert2 Example</title>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<body>
<div>
<button onclick="showAlert()">Show Alert</button>
</div>
<script>
function showAlert() {
Swal.fire({
title: 'Hello World!',
text: 'This is a simple alert.',
icon: 'info',
confirmButtonText: 'OK'
});
}
</script>
</body>
</html>
原因:
解决方法:
原因:
解决方法:
希望这些信息对你有所帮助!如果有更多问题,请随时提问。
领取专属 10元无门槛券
手把手带您无忧上云