1.引入bootstrap.css
2.html
3.Javascript函数,根据传入的value提示相应的内容(一般用于提示后台数据库信息)
function tipsAlertInfo(info){ $(".tipsAlertInfo .modal-body").html(info); $(".tipsAlertInfo").modal('show'); setTimeout(function(){ $(".tipsAlertInfo").modal('hide'); },1000);}