Peringatan Bootstrap JS


Peringatan JS (alert.js)

Plugin peringatan menyertakan opsi dan metode untuk menutup pesan peringatan.

Untuk tutorial tentang Peringatan, baca Tutorial Peringatan Bootstrap kami .


Kelas Plugin Peringatan

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.)

Tutup Peringatan Melalui data-* Atribut

Tambahkan data-dismiss="alert"ke tautan atau elemen tombol untuk menutup pesan peringatan.

Contoh

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


Tutup Peringatan Melalui JavaScript

Tutup secara manual dengan:

Contoh

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

Opsi Peringatan

None

Metode Peringatan

Tabel berikut mencantumkan semua metode peringatan yang tersedia.

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

Acara Peringatan

Tabel berikut mencantumkan semua peristiwa peringatan yang tersedia.

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