Alarm Bootstrap JS


Alert JS (alert.js)

Wtyczka alertów zawiera opcje i metody zamykania komunikatów alertów.

Aby zapoznać się z samouczkiem o alertach, przeczytaj nasz samouczek dotyczący alertów Bootstrap .


Klasy wtyczek alertów

Class Description Example
.alert Creates an alert message box
.alert-danger Red alert. Indicates a dangerous or potentially negative action
.alert-dismissible Indicates a closable alert box. Together with the .close class, this class is used to close the alert (adds extra padding)
.alert-info Light-blue alert.Indicates a neutral informative change or action
.alert-link Used on links inside alerts to provide matching colored links
.alert-success Green alert. Indicates a successful or positive action
.alert-warning Yellow alert. Indicates caution should be taken with this action
.close Styles the close button for the alert message (floats right with a specified font-size, color, etc.)

Zamknij alerty przez dane-* Atrybuty

Dodaj data-dismiss="alert"do łącza lub elementu przycisku, aby zamknąć komunikat ostrzegawczy.

Przykład

<a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>


Zamknij alerty za pomocą JavaScript

Zamknij ręcznie za pomocą:

Przykład

$('.close').alert();

Opcje alertów

None

Metody alertów

W poniższej tabeli wymieniono wszystkie dostępne metody alertów.

Method Description Try it
.alert("close") Closes the alert message

Zdarzenia alertów

W poniższej tabeli wymieniono wszystkie dostępne zdarzenia alertów.

Event Description Try it
close.bs.alert Occurs when the alert message is about to be closed
closed.bs.alert Occurs when the alert message has been closed