ここで別のスレッドでいくつかの回答を検討した後、ここに私が結んだものがあります:
showAlert()
オプションのtype
およびを使用して、アラートを動的に追加するという名前の関数を作成しましたcloseDealy
。たとえば、次のdanger
ように5秒後に自動的に閉じるタイプのアラート(つまり、Bootstrapのアラートの危険)を追加できます。
showAlert("Warning message", "danger", 5000);
これを実現するには、次のJavaScript関数を追加します。
function showAlert(message, type, closeDelay) {
if ($("#alerts-container").length == 0) {
// alerts-container does not exist, add it
$("body")
.append( $('<div id="alerts-container" style="position: fixed;
width: 50%; left: 25%; top: 10%;">') );
}
// default to alert-info; other options include success, warning, danger
type = type || "info";
// create the alert div
var alert = $('<div class="alert alert-' + type + ' fade in">')
.append(
$('<button type="button" class="close" data-dismiss="alert">')
.append("×")
)
.append(message);
// add the alert div to top of alerts-container, use append() to add to bottom
$("#alerts-container").prepend(alert);
// if closeDelay was passed - set a timeout to close the alert
if (closeDelay)
window.setTimeout(function() { alert.alert("close") }, closeDelay);
}