有以下两种方式启用警告框的可取消(dismissal)功能:
1、通过 data 属性:通过数据 API(Data API)添加可取消功能,只需要向关闭按钮添加 data-dismiss="alert",就会自动为警告框添加关闭功能。
<a class="close" data-dismiss="alert" rel="nofollow noopener noreferrer" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" aria-hidden="true">×</a>
2、通过 JavaScript添加可取消功能:
$(".alert").alert()
html代码
<div class="alert alert-success"> <a rel="nofollow noopener noreferrer" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="close" data-dismiss="alert" aria-hidden="true">√</a> <strong>成功!</strong>您的网络连接已成功! </div>
效果图:
3、下面是一些警告框(Alert)插件中有用的方法:
效果图
4、下表列出了警告框(Alert)插件中要用到的事件。这些事件可在函数中当钩子使用。
html代码
<!DOCTYPE html> <html> <head> <title>Bootstrap 警告框(Alert)插件</title> <meta charset="utf-8"> <link rel="stylesheet" rel="nofollow noopener noreferrer" href="css/bootstrap.min.css" rel="external nofollow" > <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> <style> body{ font-size:24px; } </style> </head> <body> <div class="container"> <h3>警告框(Alert)插件 alert() 方法</h3> <div id="myAlert" class="alert alert-warning"> <a rel="nofollow noopener noreferrer" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="close" data-dismiss="alert">×</a> <strong>警告!</strong>您的网络连接有问题。 </div> <script type="text/javascript"> $(function() { $("div#myAlert").bind('click',function () { alert("警告消息框被关闭。"); }); }); </script> </div> </body> </html>
效果图:
本文Bootstrap警告框(Alert)插件使用方法到此结束。生活中,我们没有必要为难自己,质疑自己,有时,我们无法很好地理解或学会某样事物,那只是我们思考与接收问题的角度不同罢了。每个人都有自己的泪要擦,每个人都有自己的路要走,只要记得:冷了,给自己加件外衣;饿了,给自己买个面包;痛了,给自己一份坚强;失败了,给自己一个目标;跌倒了,在伤痛中爬起,给自己一个宽容的微笑继续往前走,已足够!小编再次感谢大家对我们的支持!