W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
Bootstrap 允許您為網(wǎng)站或 app 的成功執(zhí)行、警告和錯誤信息定義樣式。在本教程中,您將學習如何做到這點。
使用 CSS class "alert",位于 bootstrap.css 中的行號 2123 到 2175(版本 2.0.1),您可以創(chuàng)建一個簡單警告信息。您可以為它添加一個可選的關(guān)閉圖標。
當您點擊警告框中的關(guān)閉圖標時,警告框關(guān)閉。要想實現(xiàn)這個交互效果,您必須添加兩個 JavaScript 文件 jquery.js 和 alert.js。您可以把它們添加到 body 元素關(guān)閉標簽前面。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Basic alerts with twitter bootstrap</title> <meta name="description" content="Creating basic alerts with Twitter Bootstrap. Examples of alerts and errors with Twitter Bootstrap"> <link href="/twitter-bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet"> <style type="text/css"> body { padding: 50px; } </style> </head> <body> <div class="container"> <div class="row"> <div class="span4"> <div class="alert"> <a class="close" data-dismiss="alert">×</a> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> </div> </div> </div> <script src="twitter-bootstrap-v2/docs/assets/js/jquery.js"></script> <script src="twitter-bootstrap-v2/docs/assets/js/bootstrap-alert.js"></script> </body> </html>
請注意,行號 18 到 21 之間的代碼是必需的。這些僅是為了實例演示。
通過另外兩個 CSS classes "alert-block " 和 "alert-heading",您可以擴展前面演示的簡單的警告信息。它讓您更好地控制要顯示的文本,而且您可以在警告文本前添加文本標題。
當您點擊警告框中的關(guān)閉圖標時,警告框關(guān)閉。要想實現(xiàn)這個交互效果,您必須添加兩個 JavaScript 文件 jquery.js 和 alert.js。您可以把它們添加到 body 元素關(guān)閉標簽前面。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Extending simple alert with twitter bootstrap</title> <meta name="description" content="Extending simple alert with twitter bootstrap."> <link href="/twitter-bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet"> <style type="text/css"> body { padding: 50px; } </style> </head> <body> <div class="container"> <div class="row"> <div class="span4"> <div class="alert alert-block"> <a class="close" data-dismiss="alert">×</a> <h4 class="alert-heading">Warning!</h4> What are you doing?! this will delete all files!! </div> </div> </div> </div> <script src="twitter-bootstrap-v2/docs/assets/js/jquery.js"></script> <script src="twitter-bootstrap-v2/docs/assets/js/bootstrap-alert.js"></script> </body> </html>
Bootstrap 允許您在錯誤或危險、成功和信息發(fā)生時創(chuàng)建何時的警告。對于錯誤(error),您需要 CSS class "alert-error"。對于成功(success),您需要 "alert-success" class。對于信息(information),您需要 class "alert-info"。當然,就像前面的實例中說明的一樣,您需要 JS 文件 jquery.js 和 alert.js。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example alerts on error success and information with Twitter bootstrap</title> <meta name="description" content="Example alerts on error success and information with Twitter bootstrap."> <link href="/twitter-bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css" rel="stylesheet"> <style type="text/css"> body { padding: 50px; } </style> </head> <body> <div class="alert alert-error"> <a class="close" data-dismiss="alert">×</a> <strong>Error!</strong>This is a fatal error. </div> <div class="alert alert-success"> <a class="close" data-dismiss="alert">×</a> <strong>Success!</strong>You have successfully done it. </div> <div class="alert alert-info"> <a class="close" data-dismiss="alert">×</a> <strong>Info!</strong>Watch this, but you may forget. </div> <script src="twitter-bootstrap-v2/docs/assets/js/jquery.js"></script> <script src="twitter-bootstrap-v2/docs/assets/js/bootstrap-alert.js"></script> </body> </html>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: