BootStrap-Alert 出现后自动消失
HTML代码
1 | <div id="my_alert" class="alert" role="alert"> |
提前设置为隐藏
1 | $("#my_alert").hide(); |
需要的时候调用
1 | // 添加Alert样式 |
可以写成函数
1 | function showToast(selector, style, innerHTML) |
1 | <div id="my_alert" class="alert" role="alert"> |
1 | $("#my_alert").hide(); |
1 | // 添加Alert样式 |
1 | function showToast(selector, style, innerHTML) |