Bootstrap 5 弹出提示框(Toast)
弹出提示框(Toast)
toast
弹出提示框控件用于向访客推送通知,是个轻量级、易于订制的警告消息组件。
toast
是一种轻量级通知,旨在模仿移动和桌面操作系统普及的推送通知。它们是用弹性盒子构建的,所以很容易对齐和定位,这是在V4.2.1版本添加新特性。
Toast Header
5 mins ago
Some text inside the toast body
如何创建弹出提示框
要创建弹出提示框,请使用 .toast
类,并在其中添加 .toast-header
和 .toast-body
。
注意: 默认情况下弹出提示框是隐藏的。如果要显示它,请使用 .show
类。要关闭它,请使用 <button> 元素并添加 data-bs-dismiss="toast"
:
<div class="toast show">
<div class="toast-header">
Toast Header
<button type="button" class="btn-close" data-bs-dismiss="toast"></button>
</div>
<div class="toast-body">
Some text inside the toast body
</div>
</div>
亲自试一试 »
如何打开弹出提示框
要通过单击按钮来打开弹出提示框,必须使用 JavaScript 对其进行初始化:选择指定的元素并调用 toast()
方法。
单击按钮时,以下代码将显示文档中的所有 "弹出提示框":
实例
<script>
document.getElementById("toastbtn").onclick = function() {
var toastElList = [].slice.call(document.querySelectorAll('.toast'))
var toastList = toastElList.map(function(toastEl) {
return new bootstrap.Toast(toastEl)
})
toastList.forEach(toast => toast.show())
}
</script>
亲自试一试 »