有以下兩種方式啟用警告框的可取消(dismissal)功能:
1、通過 data 屬性:通過數據 API(Data API)添加可取消功能,只需要向關閉按鈕添加 data-dismiss="alert",就會自動為警告框添加關閉功能。
<a class="close" data-dismiss="alert" 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 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" 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"> <h4>警告框(Alert)插件 alert() 方法</h4> <div id="myAlert" class="alert alert-warning"> <a 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>
效果圖:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。