在Bootstrap中,Toast组件用于在页面中显示简短的消息通知。要初始化和使用Bootstrap Toasts,你可以按照以下步骤进行操作:
1.确保你已经引入了Bootstrap的CSS和JS文件,可以通过CDN链接或本地文件引入。
2.在HTML中添加Toast容器,用于显示消息通知:
<div class="toast-container position-absolute top-0 end-0 p-3" style="z-index: 11">
 
</div>
3.使用JavaScript初始化Toast组件,并使用相关方法来显示或隐藏消息:
// 初始化Toast组件
var toastElList = [].slice.call(document.querySelectorAll('.toast'));
var toastList = toastElList.map(function (toastEl) {
  return new bootstrap.Toast(toastEl);
});
// 显示Toast消息
var toastTrigger = document.getElementById('liveToastBtn');
toastTrigger.addEventListener('click', function () {
  var toast = new bootstrap.Toast(document.querySelector('.toast'));
  toast.show();
});
4.在HTML中创建Toast消息的内容:
<div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
  <div class="toast-header">
    <strong class="me-auto">Bootstrap</strong>
    bootstrap 5<small>11 mins ago</small>
    <button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
  </div>
  <div class="toast-body">
    Hello, world! This is a toast message.
  </div>
</div>
<button type="button" id="liveToastBtn" class="btn btn-primary">Show Toast</button>
以上代码演示了如何初始化和使用Bootstrap Toasts组件来显示简短的消息通知。你可以根
据自己的需求自定义Toast的样式和内容,并使用Bootstrap提供的方法来控制Toast的显示和隐藏。确保根据你的具体情况来调整和修改代码。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。