Bootstrap基本插件学习笔记之Alert警告框(20)

和前面的模态对话框类似。

0x01 例子

先看一个简单的例子:

<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1"> <link href=""> <script src="https://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script> <script src=""></script> <title>警告框</title> </head> <body> <div> <div> <h1>警告框</h1> </div> <div> 警告!服务器dang了 <a href="#" data-dismiss="alert">&times;</a> </div> </div> </body> </html>

效果如下:

Bootstrap基本插件学习笔记之Alert警告框(20)

0x02 事件

Alert警告框和模态对话框类似,也支持JS事件:

(1)close.bs.alert

当调用 close 实例方法时立即触发该事件:

$('#myalert').bind('close.bs.alert', function () { // 执行一些动作... })

(2)closed.bs.alert

当警告框被关闭时触发该事件(将等待 CSS 过渡效果完成):

$('#myalert').bind('closed.bs.alert', function () { // 执行一些动作... })

看一个例子:

<!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1"> <link href=""> <script src="https://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script> <script src=""></script> <title>警告框</title> </head> <body> <div> <div> <h1>警告框</h1> </div> <div> 警告!服务器dang了 <a href="#" data-dismiss="alert">&times;</a> </div> </div> <script> $(function () { $("#myAlert").bind('closed.bs.alert',function () { alert("警告消息框被关闭!"); }); }) </script> </body> </html>

如果大家还想深入学习,可以点击这里进行学习,再为大家附3个精彩的专题:

Bootstrap学习教程

Bootstrap实战教程

Bootstrap插件使用教程

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjxyyx.html