Alerts

Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight required contextual classes (e.g., ). For inline dismissal, use the .

Conveying meaning to assistive technologies

Using color to add meaning only provides a visual indication, which will not be conveyed to users of assistive technologies – such as screen readers. Ensure that information denoted by the color is either obvious from the content itself (e.g. the visible text), or is included through alternative means, such as additional text hidden with the .sr-only class.

Use the .alert-link utility class to quickly provide matching colored links within any alert.

  1. <div class="alert alert-primary" role="alert">
  2. A simple primary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
  3. </div>
  4. <div class="alert alert-secondary" role="alert">
  5. A simple secondary alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
  6. </div>
  7. <div class="alert alert-success" role="alert">
  8. </div>
  9. <div class="alert alert-danger" role="alert">
  10. A simple danger alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
  11. </div>
  12. <div class="alert alert-warning" role="alert">
  13. A simple warning alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
  14. </div>
  15. A simple info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
  16. </div>
  17. <div class="alert alert-light" role="alert">
  18. A simple light alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
  19. </div>
  20. <div class="alert alert-dark" role="alert">
  21. A simple dark alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
  22. </div>

Additional content

Alerts can also contain additional HTML elements like headings, paragraphs and dividers.

Alerts - 图3

Using the alert JavaScript plugin, it’s possible to dismiss any alert inline. Here’s how:

  • If you’re building our JavaScript from source, it requires util.js. The compiled version includes this.
  • Add a dismiss button and the .alert-dismissible class, which adds extra padding to the right of the alert and positions the .close button.
  • On the dismiss button, add the data-dismiss="alert" attribute, which triggers the JavaScript functionality. Be sure to use the <button> element with it for proper behavior across all devices.
  • To animate alerts when dismissing them, be sure to add the .fade and .show classes.

You can see this in action with a live demo:

  1. <div class="alert alert-warning alert-dismissible fade show" role="alert">
  2. <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  3. <span aria-hidden="true">&times;</span>
  4. </button>
  5. </div>

JavaScript behavior

Triggers

Enable dismissal of an alert via JavaScript:

Or with data attributes on a button within the alert, as demonstrated above:

  1. <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  2. <span aria-hidden="true">&times;</span>
  3. </button>

Note that closing an alert will remove it from the DOM.

Events

Bootstrap’s alert plugin exposes a few events for hooking into alert functionality.

EventDescription
close.bs.alertThis event fires immediately when the close instance method is called.
closed.bs.alertThis event is fired when the alert has been closed (will wait for CSS transitions to complete).
  1. $('#myAlert').on('closed.bs.alert', function () {
  2. })