代码改变世界

Bootstrap Alert Auto Close

2014-07-03 23:32  图安  阅读(507)  评论(0编辑  收藏  举报

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');
});
});
});