Bootstrap Alert Auto Close

http://stackoverflow.com/questions/23101966/bootstrap-alert-auto-close

http://jsfiddle.net/mfX57/

$(document).ready (function(){
$("#success-alert").hide();
$("#myWish").click(function showAlert() {
$("#success-alert").alert();
$("#success-alert").fadeTo(2000, 500).fadeOut(500, function(){
$("#success-alert").alert('close');
});
});
});

原文地址:https://www.cnblogs.com/zhxm/p/3823529.html